r187123 - Move not past env.

Rafael Espindola rafael.espindola at gmail.com
Thu Jul 25 07:52:56 PDT 2013


Author: rafael
Date: Thu Jul 25 09:52:56 2013
New Revision: 187123

URL: http://llvm.org/viewvc/llvm-project?rev=187123&view=rev
Log:
Move not past env.

This only makes a difference with broken versions of env (like the one in
gnutools32) that always return 0.

Modified:
    cfe/trunk/test/Index/error-on-deserialized.c

Modified: cfe/trunk/test/Index/error-on-deserialized.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Index/error-on-deserialized.c?rev=187123&r1=187122&r2=187123&view=diff
==============================================================================
--- cfe/trunk/test/Index/error-on-deserialized.c (original)
+++ cfe/trunk/test/Index/error-on-deserialized.c Thu Jul 25 09:52:56 2013
@@ -6,7 +6,7 @@
 // RUN: c-index-test -write-pch %t.h.pch %S/targeted-top.h
 // RUN: env CINDEXTEST_FAILONERROR=1 not c-index-test -cursor-at=%S/targeted-nested1.h:2:16 %s -include %t.h \
 // RUN:    -Xclang -error-on-deserialized-decl=NestedVar1
-// RUN: not env CINDEXTEST_FAILONERROR=1 c-index-test -cursor-at=%S/targeted-nested1.h:2:16 %s -include %t.h \
+// RUN: env CINDEXTEST_FAILONERROR=1 not c-index-test -cursor-at=%S/targeted-nested1.h:2:16 %s -include %t.h \
 // RUN:    -Xclang -error-on-deserialized-decl=NestedVar1 2>&1 \
 // RUN:  | FileCheck %s
 





More information about the cfe-commits mailing list