<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Sun, May 4, 2014 at 11:42 PM, Alp Toker <span dir="ltr"><<a href="mailto:alp@nuanti.com" target="_blank">alp@nuanti.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Author: alp<br>
Date: Mon May  5 01:42:07 2014<br>
New Revision: 207951<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=207951&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=207951&view=rev</a><br>
Log:<br>
Update lit.cfg to support the clang-interpreter test from r207950<br>
<br>
Performs behind-the-scenes RUN line substitution similarly to what's done with<br>
clang-check and clang-format to ensure the executable is found.<br>
<br>
Modified:<br>
    cfe/trunk/test/CMakeLists.txt<br>
    cfe/trunk/test/lit.cfg<br>
<br>
Modified: cfe/trunk/test/CMakeLists.txt<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CMakeLists.txt?rev=207951&r1=207950&r2=207951&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CMakeLists.txt?rev=207951&r1=207950&r2=207951&view=diff</a><br>

==============================================================================<br>
--- cfe/trunk/test/CMakeLists.txt (original)<br>
+++ cfe/trunk/test/CMakeLists.txt Mon May  5 01:42:07 2014<br>
@@ -29,6 +29,7 @@ list(APPEND CLANG_TEST_DEPS<br>
   c-index-test diagtool arcmt-test c-arcmt-test<br>
   clang-check clang-format<br>
   clang-tblgen<br>
+  clang-interpreter<br></blockquote><div><br></div><div>I'm all in favor of having buildbots check that the clang-interpreter example still works, but is it really sufficiently valuable to slow down *all* clang-test builds by adding another (slow) link action? Can we make this only run on the buildbots by default somehow?</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
   PrintFunctionNames<br>
   SampleAnalyzerPlugin<br>
   )<br>
<br>
Modified: cfe/trunk/test/lit.cfg<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/lit.cfg?rev=207951&r1=207950&r2=207951&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/lit.cfg?rev=207951&r1=207950&r2=207951&view=diff</a><br>

==============================================================================<br>
--- cfe/trunk/test/lit.cfg (original)<br>
+++ cfe/trunk/test/lit.cfg Mon May  5 01:42:07 2014<br>
@@ -308,6 +308,7 @@ for pattern in [r"\bFileCheck\b",<br>
                 r"\bc-index-test\b",<br>
                 NoPreHyphenDot + r"\bclang-check\b" + NoPostHyphenDot,<br>
                 NoPreHyphenDot + r"\bclang-format\b" + NoPostHyphenDot,<br>
+                NoPreHyphenDot + r"\bclang-interpreter\b" + NoPostHyphenDot,<br>
                 # FIXME: Some clang test uses opt?<br>
                 NoPreHyphenDot + r"\bopt\b" + NoPostHyphenDot,<br>
                 # Handle these specially as they are strings searched<br>
<br>
<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@cs.uiuc.edu">cfe-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits</a><br>
</blockquote></div><br></div></div>