diff options
author | Reid Kleckner <rnk@google.com> | 2017-07-26 22:11:30 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2017-07-26 22:11:30 +0000 |
commit | fa83d5a39889f8fee6cb95400af2d4ce3d2e4da3 (patch) | |
tree | 5e69a5f99f67632dc8acee5bcaf32f8e5ad4821c /llvm/utils/lit/tests | |
parent | eca86cee647194f0ff60e73f1810989148e7132d (diff) | |
download | bcm5719-llvm-fa83d5a39889f8fee6cb95400af2d4ce3d2e4da3.tar.gz bcm5719-llvm-fa83d5a39889f8fee6cb95400af2d4ce3d2e4da3.zip |
[lit] Fix shtest-output-printing.py on Windows by matching either / or \\
Fixes PR33938
llvm-svn: 309198
Diffstat (limited to 'llvm/utils/lit/tests')
-rw-r--r-- | llvm/utils/lit/tests/shtest-output-printing.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/utils/lit/tests/shtest-output-printing.py b/llvm/utils/lit/tests/shtest-output-printing.py index a8a99e3c195..2a85cf975c9 100644 --- a/llvm/utils/lit/tests/shtest-output-printing.py +++ b/llvm/utils/lit/tests/shtest-output-printing.py @@ -1,8 +1,5 @@ # Check the various features of the ShTest format. # -# PR33938 -# XFAIL: windows -# # RUN: not %{lit} -j 1 -v %{inputs}/shtest-output-printing > %t.out # RUN: FileCheck --input-file %t.out %s # @@ -25,7 +22,7 @@ # CHECK-NEXT: hi # # CHECK: $ "wc" "missing-file" -# CHECK-NEXT: # redirected output from '{{.*}}/basic.txt.tmp.out': +# CHECK-NEXT: # redirected output from '{{.*(/|\\\\)}}basic.txt.tmp.out': # CHECK-NEXT: missing-file{{.*}} No such file or directory # CHECK: note: command had no output on stdout or stderr # CHECK-NEXT: error: command failed with exit status: 1 |