It seems that after dc52ce424bb1818b3270e20927447bf17e062e66, all big-endian problems have been fixed. 01899bb4e41178af6f4cf7b32833e661fe1e3322 seems to have fixed XFAIL: * of profile/instrprof-gcov-__gcov_flush-terminate.test This essentially reverts commit 5a9b792d7251e19f69f96c9619cde49497c79a07 and 93d5ae3af18f3e5d4232510274d59c1b4e5b8e77.
19 lines
823 B
Plaintext
19 lines
823 B
Plaintext
RUN: mkdir -p %t.d
|
|
RUN: cd %t.d
|
|
|
|
RUN: %clang --coverage -o instrprof-shared-lib.o -c %S/Inputs/instrprof-shared-lib.c
|
|
RUN: test -f instrprof-shared-lib.gcno
|
|
|
|
RUN: %clang --coverage -o instrprof-shared-main.o -c %S/Inputs/instrprof-shared-main.c
|
|
RUN: test -f instrprof-shared-main.gcno
|
|
|
|
RUN: %clang --coverage -o %t instrprof-shared-main.o instrprof-shared-lib.o
|
|
RUN: test -f %t
|
|
|
|
RUN: rm -f instrprof-shared-main.gcda instrprof-shared-lib.gcda
|
|
RUN: %run %t
|
|
RUN: llvm-cov gcov instrprof-shared-main.gcda
|
|
RUN: FileCheck --match-full-lines --strict-whitespace --input-file instrprof-shared-main.c.gcov %S/Inputs/instrprof-shared-main.c.gcov
|
|
RUN: llvm-cov gcov instrprof-shared-lib.gcda
|
|
RUN: FileCheck --match-full-lines --strict-whitespace --input-file instrprof-shared-lib.c.gcov %S/Inputs/instrprof-shared-lib_in-loop.c.gcov
|