[lit] Remove unnecessary testcases from lit-quoting.txt that fail on macOS

These were added in 37935405ef,
but they fail on macOS (and on Windows with MSYS based tools, before
relanding D98859). Remove the tests that exercise "not not echo", as
the primary thing to test is the plain echo patterns above.
This commit is contained in:
Martin Storsjö 2021-04-14 14:59:37 +03:00
parent 989445f438
commit 413d84fb5c
1 changed files with 0 additions and 6 deletions

View File

@ -4,12 +4,6 @@ RUN: echo 'a[b\c' | FileCheck %s --check-prefix=CHECK2
RUN: echo "a[b\\c" | FileCheck %s --check-prefix=CHECK2
RUN: echo 'a\b\\c\\\\d' | FileCheck %s --check-prefix=CHECK3
RUN: echo "a\\b\\\\c\\\\\\\\d" | FileCheck %s --check-prefix=CHECK3
RUN: not not echo "\"" | FileCheck %s --check-prefix=CHECK1
RUN: not not echo '"' | FileCheck %s --check-prefix=CHECK1
RUN: not not echo 'a[b\c' | FileCheck %s --check-prefix=CHECK2
RUN: not not echo "a[b\\c" | FileCheck %s --check-prefix=CHECK2
RUN: not not echo 'a\b\\c\\\\d' | FileCheck %s --check-prefix=CHECK3
RUN: not not echo "a\\b\\\\c\\\\\\\\d" | FileCheck %s --check-prefix=CHECK3
CHECK1: {{^"$}}
CHECK2: {{^a\[b\\c$}}
CHECK3: {{^a\\b\\\\c\\\\\\\\d$}}