[compiler-rt] r271955 - [libprofile] Also use `env` for this test.

Sean Silva via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 6 16:19:24 PDT 2016


Author: silvas
Date: Mon Jun  6 18:19:23 2016
New Revision: 271955

URL: http://llvm.org/viewvc/llvm-project?rev=271955&view=rev
Log:
[libprofile] Also use `env` for this test.

(necessary on Windows)

Modified:
    compiler-rt/trunk/test/profile/instrprof-icall-promo.test

Modified: compiler-rt/trunk/test/profile/instrprof-icall-promo.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/instrprof-icall-promo.test?rev=271955&r1=271954&r2=271955&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/instrprof-icall-promo.test (original)
+++ compiler-rt/trunk/test/profile/instrprof-icall-promo.test Mon Jun  6 18:19:23 2016
@@ -2,12 +2,12 @@ RUN: %clangxx_profgen -O2 -Xclang -fprof
 RUN: %clangxx_profgen -O2 -Xclang -fprofile-instrument=llvm -c -o %t.2.o  %S/Inputs/instrprof-icall-promo_2.cc 
 
 RUN: %clangxx_profgen -O2 -Xclang -fprofile-instrument=llvm %t.2.o %t.1.o -o %t.gen.1
-RUN: LLVM_PROFILE_FILE=%t-icall.profraw %run %t.gen.1
+RUN: env LLVM_PROFILE_FILE=%t-icall.profraw %run %t.gen.1
 RUN: llvm-profdata merge -o %t-icall.profdata %t-icall.profraw
 RUN: %clangxx -O2 -Rpass=pgo-icall-prom  -fprofile-instr-use=%t-icall.profdata -c -o %t.2.use.o  %S/Inputs/instrprof-icall-promo_2.cc  2>&1 | FileCheck %s
 
 RUN: %clangxx_profgen -O2 -Xclang -fprofile-instrument=llvm %t.1.o %t.2.o -o %t.gen.2
-RUN: LLVM_PROFILE_FILE=%t-icall2.profraw %run %t.gen.2
+RUN: env LLVM_PROFILE_FILE=%t-icall2.profraw %run %t.gen.2
 RUN: llvm-profdata merge -o %t-icall2.profdata %t-icall2.profraw
 # The following test will be re-enabled once a compiler bug is fixed.
 RUN: %clangxx -O2 -Rpass=pgo-icall-prom  -fprofile-instr-use=%t-icall2.profdata -c -o %t.2.use.o  %S/Inputs/instrprof-icall-promo_2.cc  2>&1 | FileCheck %s




More information about the llvm-commits mailing list