lit: add missing substitutions for recently added tools
authorAlp Toker <alp@nuanti.com>
Mon, 28 Oct 2013 23:37:49 +0000 (23:37 +0000)
committerAlp Toker <alp@nuanti.com>
Mon, 28 Oct 2013 23:37:49 +0000 (23:37 +0000)
llvm-mcmarkup, obj2yaml and yaml2obj were missing from the substitutions list,
causing the test suite to fail in a sandboxed environment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193559 91177308-0d34-0410-b5e6-96231b3b80d8

test/CMakeLists.txt
test/lit.cfg

index edefcb79f87eaead3b23be8193d81cc9e3772e82..d6f7dab1287e004335a0739bb5a6701b96a2c914 100644 (file)
@@ -13,6 +13,7 @@ if(NOT LLVM_BUILD_TOOLS)
 endif()
 
 # Set the depends list as a variable so that it can grow conditionally.
+# NOTE: Sync the substitutions in test/lit.cfg when adding to this list.
 set(LLVM_TEST_DEPENDS
           UnitTests
           BugpointPasses
index 9ac7e7a5a235a9f1c55c5808606c1fb78172877f..df1f4a101965bffa707e8ba41287cd355ff5ce9d 100644 (file)
@@ -224,6 +224,7 @@ for pattern in [r"\bbugpoint\b(?!-)",
                 r"\bllvm-link\b",
                 r"\bllvm-lto\b",
                 r"\bllvm-mc\b",
+                r"\bllvm-mcmarkup\b",
                 r"\bllvm-nm\b",
                 r"\bllvm-objdump\b",
                 r"\bllvm-ranlib\b",
@@ -244,6 +245,8 @@ for pattern in [r"\bbugpoint\b(?!-)",
                 r"\bFileUpdate\b",
                 r"\bc-index-test\b",
                 r"\bfpcmp\b",
+                r"\bobj2yaml\b",
+                r"\byaml2obj\b",
                 # Handle these specially as they are strings searched
                 # for during testing.
                 r"\| \bcount\b",