Avoid assemble step in verbose-output-quoting.c

Reviewers: hans

Subscribers: cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D65527

llvm-svn: 370928
This commit is contained in:
Yuanfang Chen 2019-09-04 17:10:18 +00:00
parent 70becc20fa
commit e6b26f2f91

View File

@ -1,10 +1,10 @@
// REQUIRES: shell
// RUN: %clang --verbose -DSPACE="a b" -c %s 2>&1 | FileCheck -check-prefix=SPACE -strict-whitespace %s
// RUN: %clang --verbose -DQUOTES=\"\" -c %s 2>&1 | FileCheck -check-prefix=QUOTES -strict-whitespace %s
// RUN: %clang --verbose -DBACKSLASH=\\ -c %s 2>&1 | FileCheck -check-prefix=BACKSLASH -strict-whitespace %s
// RUN: %clang --verbose -DDOLLAR=\$ -c %s 2>&1 | FileCheck -check-prefix=DOLLAR -strict-whitespace %s
// RUN: %clang --verbose -DSPACE="a b" -### %s 2>&1 | FileCheck -check-prefix=SPACE -strict-whitespace %s
// RUN: %clang --verbose -DQUOTES=\"\" -### %s 2>&1 | FileCheck -check-prefix=QUOTES -strict-whitespace %s
// RUN: %clang --verbose -DBACKSLASH=\\ -### %s 2>&1 | FileCheck -check-prefix=BACKSLASH -strict-whitespace %s
// RUN: %clang --verbose -DDOLLAR=\$ -### %s 2>&1 | FileCheck -check-prefix=DOLLAR -strict-whitespace %s
// SPACE: -cc1 {{.*}} -D "SPACE=a b"
// QUOTES: -cc1 {{.*}} -D "QUOTES=\"\""
// BACKSLASH: -cc1 {{.*}} -D "BACKSLASH=\\"
// DOLLAR: -cc1 {{.*}} -D "DOLLAR=\$"
// SPACE: "-cc1" {{.*}} "-D" "SPACE=a b"
// QUOTES: "-cc1" {{.*}} "-D" "QUOTES=\"\""
// BACKSLASH: "-cc1" {{.*}} "-D" "BACKSLASH=\\"
// DOLLAR: "-cc1" {{.*}} "-D" "DOLLAR=\$"