r319848 - Fix another record-parsing-invocation.c test issue on Windows
Douglas Yung via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 5 15:04:13 PST 2017
Author: dyung
Date: Tue Dec 5 15:04:12 2017
New Revision: 319848
URL: http://llvm.org/viewvc/llvm-project?rev=319848&view=rev
Log:
Fix another record-parsing-invocation.c test issue on Windows
Lit's env should be used before not. (Another case missed by the previous commit)
Modified:
cfe/trunk/test/Index/record-parsing-invocation.c
Modified: cfe/trunk/test/Index/record-parsing-invocation.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Index/record-parsing-invocation.c?rev=319848&r1=319847&r2=319848&view=diff
==============================================================================
--- cfe/trunk/test/Index/record-parsing-invocation.c (original)
+++ cfe/trunk/test/Index/record-parsing-invocation.c Tue Dec 5 15:04:12 2017
@@ -1,6 +1,6 @@
// RUN: rm -rf %t
// RUN: mkdir %t
-// RUN: not env CINDEXTEST_INVOCATION_EMISSION_PATH=%t c-index-test -test-load-source all %s
+// RUN: env CINDEXTEST_INVOCATION_EMISSION_PATH=%t not c-index-test -test-load-source all %s
// RUN: cat %t/libclang-* | FileCheck %s
// RUN: rm -rf %t
More information about the cfe-commits
mailing list