[compiler-rt] r264824 - [profile] Remove quotes around env variable, NFC

Vedant Kumar via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 29 21:36:10 PDT 2016


Author: vedantk
Date: Tue Mar 29 23:36:10 2016
New Revision: 264824

URL: http://llvm.org/viewvc/llvm-project?rev=264824&view=rev
Log:
[profile] Remove quotes around env variable, NFC

Modified:
    compiler-rt/trunk/test/profile/instrprof-error.c

Modified: compiler-rt/trunk/test/profile/instrprof-error.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/instrprof-error.c?rev=264824&r1=264823&r2=264824&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/instrprof-error.c (original)
+++ compiler-rt/trunk/test/profile/instrprof-error.c Tue Mar 29 23:36:10 2016
@@ -1,5 +1,5 @@
 // RUN: %clang_profgen -o %t -O3 %s
-// RUN: env LLVM_PROFILE_FILE="%t/" LLVM_PROFILE_VERBOSE_ERRORS=1 %run %t 1 2>&1 | FileCheck %s
+// RUN: env LLVM_PROFILE_FILE=%t/ LLVM_PROFILE_VERBOSE_ERRORS=1 %run %t 1 2>&1 | FileCheck %s
 
 int main(int argc, const char *argv[]) {
   if (argc < 2)




More information about the llvm-commits mailing list