From: Xinliang David Li Date: Thu, 21 Jul 2016 02:14:55 +0000 (+0000) Subject: [Profile] More test clean up to read profile from directory specified by -fprofile... X-Git-Tag: llvmorg-4.0.0-rc1~14688 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ab8d32d53a67d5499811d0840e338c32b552c683;p=platform%2Fupstream%2Fllvm.git [Profile] More test clean up to read profile from directory specified by -fprofile-generate= llvm-svn: 276226 --- diff --git a/compiler-rt/test/profile/gcc-flag-compatibility.test b/compiler-rt/test/profile/gcc-flag-compatibility.test index b108761..5b05e76 100644 --- a/compiler-rt/test/profile/gcc-flag-compatibility.test +++ b/compiler-rt/test/profile/gcc-flag-compatibility.test @@ -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. diff --git a/compiler-rt/test/profile/instrprof-basic.c b/compiler-rt/test/profile/instrprof-basic.c index 1979630..74232d6 100644 --- a/compiler-rt/test/profile/instrprof-basic.c +++ b/compiler-rt/test/profile/instrprof-basic.c @@ -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