diff options
author | Rong Xu <xur@google.com> | 2015-12-09 21:27:59 +0000 |
---|---|---|
committer | Rong Xu <xur@google.com> | 2015-12-09 21:27:59 +0000 |
commit | 7dd9b1ea75ed61eb7881f9723908ff03a14f8c1a (patch) | |
tree | aca7de2048ee6874e0d9ffd98e41c355efa20462 | |
parent | b7389d6714f8f4e46a28b90aa4a103f0586a08ab (diff) | |
download | bcm5719-llvm-7dd9b1ea75ed61eb7881f9723908ff03a14f8c1a.tar.gz bcm5719-llvm-7dd9b1ea75ed61eb7881f9723908ff03a14f8c1a.zip |
[PGO] Rename the profdata filename to avoid the conflict b/w tests.
Two tests diag_mismatch.ll and diag_no_funcprofdata.ll generates the same
profdata filename which can conflict in current test runs. This patch
renames them to have different names.
llvm-svn: 255158
-rw-r--r-- | llvm/test/Transforms/PGOProfile/diag_no_funcprofdata.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/PGOProfile/diag_no_funcprofdata.ll b/llvm/test/Transforms/PGOProfile/diag_no_funcprofdata.ll index 39cd978dc77..24262fdf290 100644 --- a/llvm/test/Transforms/PGOProfile/diag_no_funcprofdata.ll +++ b/llvm/test/Transforms/PGOProfile/diag_no_funcprofdata.ll @@ -1,5 +1,5 @@ -; RUN: llvm-profdata merge %S/Inputs/diag.proftext -o %T/diag.profdata -; RUN: opt < %s -pgo-instr-use -pgo-test-profile-file=%T/diag.profdata -S 2>&1 | FileCheck %s +; RUN: llvm-profdata merge %S/Inputs/diag.proftext -o %T/diag2.profdata +; RUN: opt < %s -pgo-instr-use -pgo-test-profile-file=%T/diag2.profdata -S 2>&1 | FileCheck %s ; CHECK: No profile data available for function bar |