From: Rafael Espindola Date: Thu, 25 Jul 2013 14:52:56 +0000 (+0000) Subject: Move not past env. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b429be838660012cec636f98ffdeb1a94cfde98;p=clang Move not past env. This only makes a difference with broken versions of env (like the one in gnutools32) that always return 0. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@187123 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Index/error-on-deserialized.c b/test/Index/error-on-deserialized.c index 3588da11bb..bf0d59a058 100644 --- a/test/Index/error-on-deserialized.c +++ b/test/Index/error-on-deserialized.c @@ -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