X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2Flit.cfg;h=df1f4a101965bffa707e8ba41287cd355ff5ce9d;hb=728eb5fbea0d082653f67ccac2bab5207b3b1a89;hp=171186ea502f15613351b1f8b0eb0f6809738ebc;hpb=1a1d7c4f4c68d64ae5d96ba45270cfcf46421ca0;p=oota-llvm.git diff --git a/test/lit.cfg b/test/lit.cfg index 171186ea502..df1f4a10196 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -224,15 +224,16 @@ 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-prof\b", r"\bllvm-ranlib\b", r"\bllvm-readobj\b", r"\bllvm-rtdyld\b", r"\bllvm-shlib\b", r"\bllvm-size\b", r"\bllvm-tblgen\b", + r"\bllvm-c-test\b", # Match llvmc but not -llvmc NOHYPHEN + r"\bllvmc\b", # Match lto but not -lto @@ -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", @@ -297,7 +300,9 @@ if config.have_zlib == "1": config.available_features.add("zlib") # Native compilation: host arch == target arch -if config.host_arch in config.target_triple: +# FIXME: Consider cases that target can be executed +# even if host_triple were different from target_triple. +if config.host_triple == config.target_triple: config.available_features.add("native") # llc knows whether he is compiled with -DNDEBUG.