[compiler-rt] r276226 - [Profile] More test clean up to read profile from directory specified by -fprofile-generate=

Xinliang David Li via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 20 19:14:55 PDT 2016


Author: davidxl
Date: Wed Jul 20 21:14:55 2016
New Revision: 276226

URL: http://llvm.org/viewvc/llvm-project?rev=276226&view=rev
Log:
[Profile] More test clean up to read profile from directory specified by -fprofile-generate=

Modified:
    compiler-rt/trunk/test/profile/gcc-flag-compatibility.test
    compiler-rt/trunk/test/profile/instrprof-basic.c

Modified: compiler-rt/trunk/test/profile/gcc-flag-compatibility.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/gcc-flag-compatibility.test?rev=276226&r1=276225&r2=276226&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/gcc-flag-compatibility.test (original)
+++ compiler-rt/trunk/test/profile/gcc-flag-compatibility.test Wed Jul 20 21:14:55 2016
@@ -2,16 +2,16 @@ RUN: rm -rf %t.d
 RUN: mkdir -p %t.d
 RUN: %clang_profgen_gcc=%t.d/d1/d2 -o %t.d/code %S/Inputs/gcc-flag-compatibility.c
 
-# Test that the instrumented code writes to %t.d/d1/d2/default.profraw
+# Test that the instrumented code writes to %t.d/d1/d2/
 RUN: %run %t.d/code
-RUN: llvm-profdata merge -o %t.profdata %t.d/d1/d2/default.profraw
+RUN: llvm-profdata merge -o %t.profdata %t.d/d1/d2/
 
 # Test that we can override the directory and file name with LLVM_PROFILE_FILE.
 RUN: env LLVM_PROFILE_FILE=%t.d/x1/prof.raw %run %t.d/code
-RUN: llvm-profdata merge -o %t.profdata %t.d/x1/prof.raw
+RUN: llvm-profdata merge -o %t.profdata %t.d/x1/
 
 # Test that we can specify a directory with -fprofile-use.
-RUN: llvm-profdata merge -o %t.d/default.profdata %t.d/x1/prof.raw
+RUN: llvm-profdata merge -o %t.d/default.profdata %t.d/x1/
 RUN: %clang_profuse_gcc=%t.d -o %t.d/code %S/Inputs/gcc-flag-compatibility.c
 
 # Test that we can specify a file with -fprofile-use.

Modified: compiler-rt/trunk/test/profile/instrprof-basic.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/instrprof-basic.c?rev=276226&r1=276225&r2=276226&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/instrprof-basic.c (original)
+++ compiler-rt/trunk/test/profile/instrprof-basic.c Wed Jul 20 21:14:55 2016
@@ -3,12 +3,14 @@
 // RUN: llvm-profdata merge -o %t.profdata %t.profraw
 // RUN: %clang_profuse=%t.profdata -o - -S -emit-llvm %s | FileCheck %s --check-prefix=COMMON --check-prefix=ORIG
 //
+// RUN: rm -fr %t.dir1
 // RUN: mkdir -p %t.dir1
 // RUN: env LLVM_PROFILE_FILE=%t.dir1/profraw_e_%1m %run %t
 // RUN: env LLVM_PROFILE_FILE=%t.dir1/profraw_e_%1m %run %t
 // RUN: llvm-profdata merge -o %t.em.profdata %t.dir1
 // RUN: %clang_profuse=%t.em.profdata -o - -S -emit-llvm %s | FileCheck %s --check-prefix=COMMON --check-prefix=MERGE
 //
+// RUN: rm -fr %t.dir2
 // RUN: mkdir -p %t.dir2
 // RUN: %clang_profgen=%t.dir2/%m.profraw -o %t.merge -O3 %s
 // RUN: %run %t.merge




More information about the llvm-commits mailing list