[llvm] r330728 - [lit] Remove spurious `-` in invocation of lit in

Dan Liew via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 24 08:42:00 PDT 2018


Author: delcypher
Date: Tue Apr 24 08:42:00 2018
New Revision: 330728

URL: http://llvm.org/viewvc/llvm-project?rev=330728&view=rev
Log:
[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.

Modified:
    llvm/trunk/utils/lit/tests/shtest-xunit-output.py

Modified: llvm/trunk/utils/lit/tests/shtest-xunit-output.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/lit/tests/shtest-xunit-output.py?rev=330728&r1=330727&r2=330728&view=diff
==============================================================================
--- llvm/trunk/utils/lit/tests/shtest-xunit-output.py (original)
+++ llvm/trunk/utils/lit/tests/shtest-xunit-output.py Tue Apr 24 08:42:00 2018
@@ -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" ?>




More information about the llvm-commits mailing list