From 1a0c8e6d2e54344daf2886e8da9d9ebfcb4faa41 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Tue, 26 Apr 2016 20:40:23 +0000 Subject: [PATCH] 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 --- test/Driver/at_file_missing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" -- 2.50.1