[llvm] r355007 - Clean up the delimiters test.
Matt Davis via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 27 09:39:37 PST 2019
Author: mattd
Date: Wed Feb 27 09:39:36 2019
New Revision: 355007
URL: http://llvm.org/viewvc/llvm-project?rev=355007&view=rev
Log:
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.
Modified:
llvm/trunk/test/tools/llvm-cxxfilt/delimiters.test
Modified: llvm/trunk/test/tools/llvm-cxxfilt/delimiters.test
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/llvm-cxxfilt/delimiters.test?rev=355007&r1=355006&r2=355007&view=diff
==============================================================================
--- llvm/trunk/test/tools/llvm-cxxfilt/delimiters.test (original)
+++ llvm/trunk/test/tools/llvm-cxxfilt/delimiters.test Wed Feb 27 09:39:36 2019
@@ -1,34 +1,34 @@
-RUN: echo ",,_Z3Foo!" \
-RUN: "_Z3Foo\"" \
-RUN: "_Z3Foo\"" \
-RUN: "_Z3Foo#" \
-RUN: "_Z3Foo%" \
-RUN: "_Z3Foo&" \
+UNSUPPORTED: system-windows
+RUN: echo ',,_Z3Foo!' \
+RUN: '_Z3Foo"' \
+RUN: '_Z3Foo#' \
+RUN: '_Z3Foo%' \
+RUN: '_Z3Foo&' \
RUN: "_Z3Foo'" \
-RUN: "_Z3Foo(" \
-RUN: "_Z3Foo)" \
-RUN: "_Z3Foo*" \
-RUN: "_Z3Foo+" \
-RUN: "_Z3Foo," \
-RUN: "_Z3Foo-" \
-RUN: "_Z3Foo/" \
-RUN: "_Z3Foo:" \
-RUN: "_Z3Foo;" \
-RUN: "_Z3Foo<" \
-RUN: "_Z3Foo=" \
-RUN: "_Z3Foo>" \
-RUN: "_Z3Foo?" \
-RUN: "_Z3Foo@" \
-RUN: "_Z3Foo[" \
-RUN: "_Z3Foo\\" \
-RUN: "_Z3Foo]" \
-RUN: "_Z3Foo^" \
-RUN: "_Z3Foo\`" \
-RUN: "_Z3Foo{" \
-RUN: "_Z3Foo|" \
-RUN: "_Z3Foo}" \
-RUN: "_Z3Foo~,," \
-RUN: "_Z3Foo,,_Z3Bar::_Z3Baz _Z3Foo,_Z3Bar:_Z3Baz" \
+RUN: '_Z3Foo(' \
+RUN: '_Z3Foo)' \
+RUN: '_Z3Foo*' \
+RUN: '_Z3Foo+' \
+RUN: '_Z3Foo,' \
+RUN: '_Z3Foo-' \
+RUN: '_Z3Foo/' \
+RUN: '_Z3Foo:' \
+RUN: '_Z3Foo;' \
+RUN: '_Z3Foo<' \
+RUN: '_Z3Foo=' \
+RUN: '_Z3Foo>' \
+RUN: '_Z3Foo?' \
+RUN: '_Z3Foo@' \
+RUN: '_Z3Foo[' \
+RUN: '_Z3Foo\' \
+RUN: '_Z3Foo]' \
+RUN: '_Z3Foo^' \
+RUN: '_Z3Foo`' \
+RUN: '_Z3Foo{' \
+RUN: '_Z3Foo|' \
+RUN: '_Z3Foo}' \
+RUN: '_Z3Foo~,,' \
+RUN: '_Z3Foo,,_Z3Bar::_Z3Baz _Z3Foo,_Z3Bar:_Z3Baz' \
RUN: '_Z3Foo$ ._Z3Foo' | llvm-cxxfilt | FileCheck %s
CHECK: ,,Foo!
More information about the llvm-commits
mailing list