Skip to content

Commit eaa8953

Browse files
Matt DavisMatt Davis
authored andcommitted
Clean up the delimiters test.
Ideally this is a NFCI, used single quotes in most cases. Hopefully this will make the Windows bot happy. I've marked this unsupported on windows, until I get my windows box setup with this patch to test. I'll remove that constraint after I'm confident this will pass on windows. I just want to silence the buildbots for now. llvm-svn: 355007
1 parent 1be935f commit eaa8953

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

llvm/test/tools/llvm-cxxfilt/delimiters.test

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
RUN: echo ",,_Z3Foo!" \
2-
RUN: "_Z3Foo\"" \
3-
RUN: "_Z3Foo\"" \
4-
RUN: "_Z3Foo#" \
5-
RUN: "_Z3Foo%" \
6-
RUN: "_Z3Foo&" \
1+
UNSUPPORTED: system-windows
2+
RUN: echo ',,_Z3Foo!' \
3+
RUN: '_Z3Foo"' \
4+
RUN: '_Z3Foo#' \
5+
RUN: '_Z3Foo%' \
6+
RUN: '_Z3Foo&' \
77
RUN: "_Z3Foo'" \
8-
RUN: "_Z3Foo(" \
9-
RUN: "_Z3Foo)" \
10-
RUN: "_Z3Foo*" \
11-
RUN: "_Z3Foo+" \
12-
RUN: "_Z3Foo," \
13-
RUN: "_Z3Foo-" \
14-
RUN: "_Z3Foo/" \
15-
RUN: "_Z3Foo:" \
16-
RUN: "_Z3Foo;" \
17-
RUN: "_Z3Foo<" \
18-
RUN: "_Z3Foo=" \
19-
RUN: "_Z3Foo>" \
20-
RUN: "_Z3Foo?" \
21-
RUN: "_Z3Foo@" \
22-
RUN: "_Z3Foo[" \
23-
RUN: "_Z3Foo\\" \
24-
RUN: "_Z3Foo]" \
25-
RUN: "_Z3Foo^" \
26-
RUN: "_Z3Foo\`" \
27-
RUN: "_Z3Foo{" \
28-
RUN: "_Z3Foo|" \
29-
RUN: "_Z3Foo}" \
30-
RUN: "_Z3Foo~,," \
31-
RUN: "_Z3Foo,,_Z3Bar::_Z3Baz _Z3Foo,_Z3Bar:_Z3Baz" \
8+
RUN: '_Z3Foo(' \
9+
RUN: '_Z3Foo)' \
10+
RUN: '_Z3Foo*' \
11+
RUN: '_Z3Foo+' \
12+
RUN: '_Z3Foo,' \
13+
RUN: '_Z3Foo-' \
14+
RUN: '_Z3Foo/' \
15+
RUN: '_Z3Foo:' \
16+
RUN: '_Z3Foo;' \
17+
RUN: '_Z3Foo<' \
18+
RUN: '_Z3Foo=' \
19+
RUN: '_Z3Foo>' \
20+
RUN: '_Z3Foo?' \
21+
RUN: '_Z3Foo@' \
22+
RUN: '_Z3Foo[' \
23+
RUN: '_Z3Foo\' \
24+
RUN: '_Z3Foo]' \
25+
RUN: '_Z3Foo^' \
26+
RUN: '_Z3Foo`' \
27+
RUN: '_Z3Foo{' \
28+
RUN: '_Z3Foo|' \
29+
RUN: '_Z3Foo}' \
30+
RUN: '_Z3Foo~,,' \
31+
RUN: '_Z3Foo,,_Z3Bar::_Z3Baz _Z3Foo,_Z3Bar:_Z3Baz' \
3232
RUN: '_Z3Foo$ ._Z3Foo' | llvm-cxxfilt | FileCheck %s
3333

3434
CHECK: ,,Foo!

0 commit comments

Comments
 (0)