Permalink
Please
sign in to comment.
Browse files
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
- Loading branch information
Showing
with
8 additions
and 8 deletions.
@@ -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=\$" |
0 comments on commit
e6b26f2