From: Nico Weber Date: Tue, 26 Apr 2016 20:40:23 +0000 (+0000) Subject: Try to get at_file_missing.c passing after LLVM r267556. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a0c8e6d2e54344daf2886e8da9d9ebfcb4faa41;p=clang Try to get at_file_missing.c passing after LLVM r267556. r267556 made backslashes escape the next character unconditionally in rsp files. This test echos a path into a rsp file, and paths contain backslashes on Windows. Since it's not important for this test to get the filename from the rsp file, just pass it regularly. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@267601 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/at_file_missing.c b/test/Driver/at_file_missing.c index 0189a8bb75..23645a5d3f 100644 --- a/test/Driver/at_file_missing.c +++ b/test/Driver/at_file_missing.c @@ -1,7 +1,7 @@ // Make sure that arguments that begin with @ are left as is in the argument // stream, and also that @file arguments continue to be processed. -// RUN: echo "%s -D FOO" > %t.args -// RUN: %clang -rpath @executable_path/../lib @%t.args -### 2>&1 | FileCheck %s +// RUN: echo "-D FOO" > %t.args +// RUN: %clang -rpath @executable_path/../lib @%t.args %s -### 2>&1 | FileCheck %s // CHECK: "-D" "FOO" // CHECK: "-rpath" "@executable_path/../lib"