Skip to content

Commit

Permalink
Avoid assemble step in verbose-output-quoting.c
Browse files Browse the repository at this point in the history
Reviewers: hans

Subscribers: cfe-commits

Tags: #clang

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

llvm-svn: 370928
  • Loading branch information
Yuanfang Chen committed Sep 4, 2019
1 parent 70becc2 commit e6b26f2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions clang/test/Driver/verbose-output-quoting.c
@@ -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

Please sign in to comment.