diff options
author | Dan Liew <dan@su-root.co.uk> | 2018-04-24 15:42:00 +0000 |
---|---|---|
committer | Dan Liew <dan@su-root.co.uk> | 2018-04-24 15:42:00 +0000 |
commit | 97a60c21d4a4afa716840054821d70a2ec04f99f (patch) | |
tree | f43c46e793c336de66cc3390fab13deafd593627 /llvm/utils/lit/tests | |
parent | 8c77bf9ec6df8335a750167001c18eaea7435da8 (diff) | |
download | bcm5719-llvm-97a60c21d4a4afa716840054821d70a2ec04f99f.tar.gz bcm5719-llvm-97a60c21d4a4afa716840054821d70a2ec04f99f.zip |
[lit] Remove spurious `-` in invocation of lit in
`shtest-xunit-output.py` test.
Although there is no `-` file Jeremy Morse has reported to me that it
causes problems in their setup because lit tries to find it and ends up
loading an out of tree lit configuration file.
llvm-svn: 330728
Diffstat (limited to 'llvm/utils/lit/tests')
-rw-r--r-- | llvm/utils/lit/tests/shtest-xunit-output.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/lit/tests/shtest-xunit-output.py b/llvm/utils/lit/tests/shtest-xunit-output.py index 853ed560e80..58089799e35 100644 --- a/llvm/utils/lit/tests/shtest-xunit-output.py +++ b/llvm/utils/lit/tests/shtest-xunit-output.py @@ -1,4 +1,4 @@ -# RUN: not %{lit} -j 1 -v %{inputs}/shtest-format - --xunit-xml-output %t.xml +# RUN: not %{lit} -j 1 -v %{inputs}/shtest-format --xunit-xml-output %t.xml # RUN: FileCheck < %t.xml %s # CHECK: <?xml version="1.0" encoding="UTF-8" ?> |