[LNT] r244257 - If InstallDir is in driver output, ignore it

Chris Matthews via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 6 12:53:37 PDT 2015


Author: cmatthews
Date: Thu Aug  6 14:53:37 2015
New Revision: 244257

URL: http://llvm.org/viewvc/llvm-project?rev=244257&view=rev
Log:
If InstallDir is in driver output, ignore it

Modified:
    lnt/trunk/lnt/tests/compile.py

Modified: lnt/trunk/lnt/tests/compile.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/compile.py?rev=244257&r1=244256&r2=244257&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/compile.py (original)
+++ lnt/trunk/lnt/tests/compile.py Thu Aug  6 14:53:37 2015
@@ -148,6 +148,7 @@ def test_cc_command(base_name, run_info,
                 ln.startswith('Configured with:') or
                 ln.startswith('Target:') or
                 ln.startswith('Thread model:') or
+                ln.startswith('InstallDir') or
                 ' version ' in ln):
                 continue
             cc_commands.append(ln)




More information about the llvm-commits mailing list