summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test/profile/instrprof-override-filename-then-reset-default.c
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2015-04-29 21:56:35 +0000
committerJustin Bogner <mail@justinbogner.com>2015-04-29 21:56:35 +0000
commit2d2faae647e07129d7e0f1cb18511a12c6b748a6 (patch)
treeef9b366822c1c128599be0d750a1112d40a6cae6 /compiler-rt/test/profile/instrprof-override-filename-then-reset-default.c
parentbe9843ce54978338532163f75653308898d6d9b5 (diff)
downloadbcm5719-llvm-2d2faae647e07129d7e0f1cb18511a12c6b748a6.tar.gz
bcm5719-llvm-2d2faae647e07129d7e0f1cb18511a12c6b748a6.zip
profile: Use unique directory for tests that write default profile file
Fix a couple of new tests that were reverted because they were causing intermittent test failures since they were writing the same default "default.profraw" file. Fixed by creating a unique directory and running tests in that directory. Patch by Teresa Johnson. Thanks! llvm-svn: 236168
Diffstat (limited to 'compiler-rt/test/profile/instrprof-override-filename-then-reset-default.c')
-rw-r--r--compiler-rt/test/profile/instrprof-override-filename-then-reset-default.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/compiler-rt/test/profile/instrprof-override-filename-then-reset-default.c b/compiler-rt/test/profile/instrprof-override-filename-then-reset-default.c
new file mode 100644
index 00000000000..137a3b2f229
--- /dev/null
+++ b/compiler-rt/test/profile/instrprof-override-filename-then-reset-default.c
@@ -0,0 +1,19 @@
+// RUN: rm -rf %t.d
+// RUN: mkdir -p %t.d
+// RUN: cd %t.d
+// RUN: %clang_profgen -O3 %s -o %t.out
+// RUN: %run %t.out %t.d/bad.profraw
+// RUN: llvm-profdata merge -o %t.d/default.profdata %t.d/default.profraw
+// RUN: %clang_profuse=%t.d/default.profdata -o - -S -emit-llvm %s | FileCheck %s
+
+
+void __llvm_profile_override_default_filename(const char *);
+int main(int argc, const char *argv[]) {
+ // CHECK: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[PD1:[0-9]+]]
+ if (argc < 2)
+ return 1;
+ __llvm_profile_override_default_filename(argv[1]);
+ __llvm_profile_override_default_filename(0);
+ return 0;
+}
+// CHECK: ![[PD1]] = !{!"branch_weights", i32 1, i32 2}
OpenPOWER on IntegriCloud