[llvm-commits] [dragonegg] r150692 - /dragonegg/trunk/test/compilator/lit.cfg

Duncan Sands baldrick at free.fr
Thu Feb 16 06:22:56 PST 2012


Author: baldrick
Date: Thu Feb 16 08:22:56 2012
New Revision: 150692

URL: http://llvm.org/viewvc/llvm-project?rev=150692&view=rev
Log:
Add missing comma that meant that Fortran tests weren't
being run.  Change the case of the output directory to
match that of the input directory.

Modified:
    dragonegg/trunk/test/compilator/lit.cfg

Modified: dragonegg/trunk/test/compilator/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/test/compilator/lit.cfg?rev=150692&r1=150691&r2=150692&view=diff
==============================================================================
--- dragonegg/trunk/test/compilator/lit.cfg (original)
+++ dragonegg/trunk/test/compilator/lit.cfg Thu Feb 16 08:22:56 2012
@@ -11,13 +11,13 @@
 config.test_source_root = os.path.dirname(__file__)
 
 # test_exec_root: The path where tests are executed.
-config.test_exec_root = config.test_output_dir + '/Compilator/'
+config.test_exec_root = config.test_output_dir + '/compilator/'
 
 # suffixes: A list of file types to treat as compilable.
 config.suffixes = [
   '.adb',				# Ada
   '.c', '.i',				# C
-  '.C', '.cc', '.cpp', '.ii'		# C++
+  '.C', '.cc', '.cpp', '.ii',		# C++
   '.f', '.f03', '.f08', '.f90', '.f95',	# Fortran
   '.go',				# Go
   '.jar', '.class',			# Java





More information about the llvm-commits mailing list