[compiler-rt] r236168 - profile: Use unique directory for tests that write default profile file

Justin Bogner mail at justinbogner.com
Wed Apr 29 14:56:35 PDT 2015


Author: bogner
Date: Wed Apr 29 16:56:35 2015
New Revision: 236168

URL: http://llvm.org/viewvc/llvm-project?rev=236168&view=rev
Log:
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!

Added:
    compiler-rt/trunk/test/profile/instrprof-override-filename-then-reset-default.c
    compiler-rt/trunk/test/profile/instrprof-set-filename-then-reset-default.c

Added: compiler-rt/trunk/test/profile/instrprof-override-filename-then-reset-default.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/instrprof-override-filename-then-reset-default.c?rev=236168&view=auto
==============================================================================
--- compiler-rt/trunk/test/profile/instrprof-override-filename-then-reset-default.c (added)
+++ compiler-rt/trunk/test/profile/instrprof-override-filename-then-reset-default.c Wed Apr 29 16:56:35 2015
@@ -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}

Added: compiler-rt/trunk/test/profile/instrprof-set-filename-then-reset-default.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/instrprof-set-filename-then-reset-default.c?rev=236168&view=auto
==============================================================================
--- compiler-rt/trunk/test/profile/instrprof-set-filename-then-reset-default.c (added)
+++ compiler-rt/trunk/test/profile/instrprof-set-filename-then-reset-default.c Wed Apr 29 16:56:35 2015
@@ -0,0 +1,18 @@
+// 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_set_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_set_filename(argv[1]);
+  __llvm_profile_set_filename(0);
+  return 0;
+}
+// CHECK: ![[PD1]] = !{!"branch_weights", i32 1, i32 2}





More information about the llvm-commits mailing list