[llvm-commits] [llvm] r64103 - in /llvm/trunk/test/LLVMC: dg.exp llvmc.exp
Bill Wendling
isanbard at gmail.com
Sun Feb 8 14:52:50 PST 2009
Author: void
Date: Sun Feb 8 16:52:50 2009
New Revision: 64103
URL: http://llvm.org/viewvc/llvm-project?rev=64103&view=rev
Log:
Rename dg.exp to llvmc.exp. This is so I can ignore it during a make check if I want to.
Added:
llvm/trunk/test/LLVMC/llvmc.exp
Removed:
llvm/trunk/test/LLVMC/dg.exp
Removed: llvm/trunk/test/LLVMC/dg.exp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/LLVMC/dg.exp?rev=64102&view=auto
==============================================================================
--- llvm/trunk/test/LLVMC/dg.exp (original)
+++ llvm/trunk/test/LLVMC/dg.exp (removed)
@@ -1,26 +0,0 @@
-load_lib llvm.exp
-
-set special_file "$srcdir/$subdir/false.c"
-
-if [ llvm_gcc_supports c ] then {
- # tcl seems to lack 'filter' which would've made this easier...
- set temp [glob -nocomplain $srcdir/$subdir/*.{c}]
- set c_files [list]
- foreach f $temp { if {$f != $special_file} {lappend c_files $f}}
-
- RunLLVMTests [lsort $c_files]
-}
-
-if [ llvm_gcc_supports c++ ] then {
- RunLLVMTests [lsort [concat [glob -nocomplain $srcdir/$subdir/*.{cpp}] $special_file]]
-}
-
-if [ llvm_gcc_supports objc ] then {
- RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{m}]]
-}
-
-if [ llvm_gcc_supports obj-c++ ] then {
- RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{m}]]
-}
-
-RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{td}]]
Added: llvm/trunk/test/LLVMC/llvmc.exp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/LLVMC/llvmc.exp?rev=64103&view=auto
==============================================================================
--- llvm/trunk/test/LLVMC/llvmc.exp (added)
+++ llvm/trunk/test/LLVMC/llvmc.exp Sun Feb 8 16:52:50 2009
@@ -0,0 +1,26 @@
+load_lib llvm.exp
+
+set special_file "$srcdir/$subdir/false.c"
+
+if [ llvm_gcc_supports c ] then {
+ # tcl seems to lack 'filter' which would've made this easier...
+ set temp [glob -nocomplain $srcdir/$subdir/*.{c}]
+ set c_files [list]
+ foreach f $temp { if {$f != $special_file} {lappend c_files $f}}
+
+ RunLLVMTests [lsort $c_files]
+}
+
+if [ llvm_gcc_supports c++ ] then {
+ RunLLVMTests [lsort [concat [glob -nocomplain $srcdir/$subdir/*.{cpp}] $special_file]]
+}
+
+if [ llvm_gcc_supports objc ] then {
+ RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{m}]]
+}
+
+if [ llvm_gcc_supports obj-c++ ] then {
+ RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{m}]]
+}
+
+RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{td}]]
More information about the llvm-commits
mailing list