Haiku uses typical UNIX interfaces. All tests pass except instrprof-error.c Posix/gcov-dlopen.c Posix/gcov-destructor.c Posix/instrprof-dlopen-norpath.test --------- Co-authored-by: Petr Hosek <phosek@google.com>
11 lines
270 B
C
11 lines
270 B
C
// XFAIL: target={{.*haiku.*}}
|
|
// RUN: %clang_profgen -o %t -O3 %s
|
|
// RUN: env LLVM_PROFILE_FILE=%t/ %run %t 1 2>&1 | FileCheck %s
|
|
|
|
int main(int argc, const char *argv[]) {
|
|
if (argc < 2)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
// CHECK: LLVM Profile Error: Failed to write file
|