[dragonegg] r175989 - Add output from the test for whether the language is supported, to try to

Duncan Sands baldrick at free.fr
Sat Feb 23 23:55:33 PST 2013


Author: baldrick
Date: Sun Feb 24 01:55:32 2013
New Revision: 175989

URL: http://llvm.org/viewvc/llvm-project?rev=175989&view=rev
Log:
Add output from the test for whether the language is supported, to try to
understand why some buildbots wrongly think they support Ada.

Modified:
    dragonegg/trunk/test/DEUtils.py

Modified: dragonegg/trunk/test/DEUtils.py
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/test/DEUtils.py?rev=175989&r1=175988&r2=175989&view=diff
==============================================================================
--- dragonegg/trunk/test/DEUtils.py (original)
+++ dragonegg/trunk/test/DEUtils.py Sun Feb 24 01:55:32 2013
@@ -58,6 +58,7 @@ def isLanguageSupported(language, compil
   # The language is supported if the file compiles without error.
   out,err,exitCode = TestRunner.executeCommand([compiler, '-S', '-x',
                           language, source.name])
+  print language,out,err,exitCode,compiler
   return exitCode == 0
 
 def getSupportedLanguages(compiler):





More information about the llvm-commits mailing list