Trailing whitespace.
[oota-llvm.git] / test / lib / llvm.exp
1 # This procedure executes one line of a test case's execution script.
2 proc execOneLine { test PRS outcome lineno line } {
3   set status 0
4   set resultmsg ""
5   set retval [ catch { eval exec -keepnewline -- $line } errmsg ]
6   if { $retval != 0 } {
7     set code [lindex $::errorCode 0]
8     set lineno [expr $lineno + 1]
9     if { $PRS != ""} {
10       set PRS " for $PRS"
11     }
12     set errmsg " at line $lineno\nwhile running: $line\n$errmsg"
13     switch "$code" {
14       CHILDSTATUS {
15         set status [lindex $::errorCode 2]
16         if { $status != 0 } {
17           set resultmsg "$test$PRS\nFailed with exit($status)$errmsg"
18         }
19       }
20       CHILDKILLED {
21         set signal [lindex $::errorCode 2]
22         set resultmsg "$test$PRS\nFailed with signal($signal)$errmsg"
23       }
24       CHILDSUSP {
25         set signal [lindex $::errorCode 2]
26         set resultmsg "$test$PRS\nFailed with suspend($signal)$errmsg"
27       }
28       POSIX {
29         set posixNum [lindex $::errorCode 1]
30         set posixMsg [lindex $::errorCode 2]
31         set resultmsg "$test$PRS\nFailed with posix($posixNum,$posixMsg)$errmsg"
32       }
33       NONE {
34         # Any other error such as stderr output of a program, or syntax error in
35         # the RUN line.
36         set resultmsg "$test$PRS\nFailed with unknown error (or has stderr output)$errmsg"
37       }
38       default {
39         set resultmsg "$test$PRS\nFailed with unknown error$errmsg"
40       }
41     }
42   }
43   return $resultmsg
44 }
45
46 # This procedure performs variable substitutions on the RUN: lines of a test
47 # cases.
48 proc substitute { line test tmpFile } {
49   global srcroot objroot srcdir objdir subdir target_triplet prcontext
50   global llvmgcc llvmgxx llvmgcc_version llvmgccmajvers ocamlc
51   global gccpath gxxpath compile_c compile_cxx link shlibext llvmlibsdir llvmdsymutil
52   global valgrind grep gas
53   set path [file join $srcdir $subdir]
54
55   # Substitute all Tcl variables.
56   set new_line [subst $line ]
57
58   #replace %% with _#MARKER#_ to make the replacement of %% more predictable
59   regsub -all {%%} $new_line {_#MARKER#_} new_line
60   #replace %prcontext with prcontext.tcl (Must replace before %p)
61   regsub -all {%prcontext} $new_line $prcontext new_line
62   #replace %llvmgcc with actual path to llvmgcc
63   regsub -all {%llvmgcc} $new_line "$llvmgcc -emit-llvm -w" new_line
64   #replace %llvmgxx with actual path to llvmg++
65   regsub -all {%llvmgxx} $new_line "$llvmgxx -emit-llvm -w" new_line
66   #replace %compile_cxx with C++ compilation command
67   regsub -all {%compile_cxx} $new_line "$compile_cxx" new_line
68   #replace %compile_c with C compilation command
69   regsub -all {%compile_c} $new_line "$compile_c" new_line
70   #replace %link with C++ link command
71   regsub -all {%link} $new_line "$link" new_line
72   #replace %shlibext with shared library extension
73   regsub -all {%shlibext} $new_line "$shlibext" new_line
74   #replace %ocamlc with ocaml compiler command
75   regsub -all {%ocamlc} $new_line "$ocamlc" new_line
76   #replace %llvmdsymutil with dsymutil command
77   regsub -all {%llvmdsymutil} $new_line "$llvmdsymutil" new_line
78   #replace %llvmlibsdir with configure library directory
79   regsub -all {%llvmlibsdir} $new_line "$llvmlibsdir" new_line
80   #replace %p with path to source,
81   regsub -all {%p} $new_line [file join $srcdir $subdir] new_line
82   #replace %s with filename
83   regsub -all {%s} $new_line $test new_line
84   #replace %t with temp filenames
85   regsub -all {%t} $new_line $tmpFile new_line
86   #replace _#MARKER#_ with %
87   regsub -all {_#MARKER#_} $new_line % new_line
88
89   #replace grep with GNU grep
90   regsub -all { grep } $new_line " $grep " new_line
91   #replace as with GNU as
92   regsub -all {\| as } $new_line "| $gas " new_line
93
94   #valgind related stuff
95 # regsub -all {bugpoint } $new_line "$valgrind bugpoint " new_line
96   regsub -all {llc } $new_line "$valgrind llc " new_line
97   regsub -all {lli } $new_line "$valgrind lli " new_line
98   regsub -all {llvm-ar } $new_line "$valgrind llvm-ar " new_line
99   regsub -all {llvm-as } $new_line "$valgrind llvm-as " new_line
100   regsub -all {llvm-bcanalyzer } $new_line "$valgrind llvm-bcanalyzer " new_line
101   regsub -all {llvm-dis } $new_line "$valgrind llvm-dis " new_line
102   regsub -all {llvm-extract } $new_line "$valgrind llvm-extract " new_line
103   regsub -all {llvm-ld } $new_line "$valgrind llvm-ld " new_line
104   regsub -all {llvm-link } $new_line "$valgrind llvm-link " new_line
105   regsub -all {llvm-nm } $new_line "$valgrind llvm-nm " new_line
106   regsub -all {llvm-prof } $new_line "$valgrind llvm-prof " new_line
107   regsub -all {llvm-ranlib } $new_line "$valgrind llvm-ranlib " new_line
108   regsub -all {([^a-zA-Z_-])opt } $new_line "\\1$valgrind opt " new_line
109   regsub -all {^opt } $new_line "$valgrind opt " new_line
110   regsub -all {tblgen } $new_line "$valgrind tblgen " new_line
111   regsub -all "not $valgrind " $new_line "$valgrind not " new_line
112
113   return $new_line
114 }
115
116 # This procedure runs the set of tests for the test_source_files array.
117 proc RunLLVMTests { test_source_files } {
118   global srcroot objroot srcdir objdir subdir target_triplet llvmgcc_version
119   set timeout 60
120
121   set path [file join $objdir $subdir]
122
123   #Make Output Directory if it does not exist already
124   if { [file exists path] } {
125     cd $path
126   } else {
127     file mkdir $path
128     cd $path
129   }
130
131   file mkdir Output
132   cd Output
133
134   foreach test $test_source_files {
135     #Should figure out best way to set the timeout
136     #set timeout 40
137
138     set filename [file tail $test]
139     verbose "ABOUT TO RUN: $filename" 2
140     set outcome PASS
141     set tmpFile "$filename.tmp"
142
143     # Mark that it should not be XFAIL for this target.
144     set targetPASS 0
145
146     #set hasRunline bool to check if testcase has a runline
147     set numLines 0
148
149     # Open the test file and start reading lines
150     set testFileId [ open $test r]
151     set runline ""
152     set PRNUMS ""
153     foreach line [split [read $testFileId] \n] {
154
155       # if its the END. line then stop parsing (optimization for big files)
156       if {[regexp {END.[[:space:]]*$} $line match endofscript]} {
157         break
158
159       # if the line is continued, concatenate and continue the loop
160       } elseif {[regexp {RUN: *(.+)(\\)$} $line match oneline suffix]} {
161         set runline "$runline$oneline "
162
163       # if its a terminating RUN: line then do substitution on the whole line
164       # and then save the line.
165       } elseif {[regexp {RUN: *(.+)$} $line match oneline suffix]} {
166         set runline "$runline$oneline"
167         set runline [ substitute $runline $test $tmpFile ]
168         set lines($numLines) $runline
169         set numLines [expr $numLines + 1]
170         set runline ""
171
172       # if its an PR line, save the problem report number
173       } elseif {[regexp {PR([0-9]+)} $line match prnum]} {
174         if {$PRNUMS == ""} {
175           set PRNUMS "PR$prnum"
176         } else {
177           set PRNUMS "$PRNUMS,$prnum"
178         }
179       # if its an XFAIL line, see if we should be XFAILing or not.
180       } elseif {[regexp {XFAIL:[ *](.+)} $line match targets]} {
181         set targets
182
183         #split up target if more then 1 specified
184         foreach target [split $targets ,] {
185           if { [regexp {\*} $target match] } {
186               if {$targetPASS != 1} {
187                  set outcome XFAIL
188               }
189           } elseif { [regexp $target $target_triplet match] } {
190               if {$targetPASS != 1} {
191                  set outcome XFAIL
192               }
193           } elseif { [regexp {llvmgcc(([0-9]+)|([0-9]+[.][0-9]+))} $target match submatch submatch2]  } {
194             if { [regexp ^($submatch)$|^(($submatch)(\.)) $llvmgcc_version match] } {
195               if {$targetPASS != 1} {
196                  set outcome XFAIL
197               }
198             }
199           }
200         }
201       } elseif {[regexp {XTARGET:[ *](.+)} $line match targets]} {
202         set targets
203
204         #split up target if more then 1 specified
205         foreach target [split $targets ,] {
206           if { [regexp {\*} $target match] } {
207               set targetPASS 1
208               set outcome PASS
209           } elseif { [regexp $target $target_triplet match] } {
210               set targetPASS 1
211               set outcome PASS
212           } elseif { [regexp {llvmgcc(([0-9]+)|([0-9]+[.][0-9]+))} $target match submatch submatch2]  } {
213             if { [regexp ^($submatch)$|^(($submatch)(\.)) $llvmgcc_version match] } {
214               set targetPASS 1
215               set outcome PASS
216             }
217           }
218         }
219       }
220     }
221
222     # Done reading the script
223     close $testFileId
224
225
226     if { $numLines == 0 } {
227       fail "$test: \nDoes not have a RUN line\n"
228     } else {
229       set failed 0
230       for { set i 0 } { $i < $numLines } { set i [ expr $i + 1 ] } {
231         regsub ^.*RUN:(.*) $lines($i) \1 theLine
232         set resultmsg [execOneLine $test $PRNUMS $outcome $i $theLine ]
233         if { $resultmsg != "" } {
234           if { $outcome == "XFAIL" } {
235             xfail "$resultmsg"
236           } else {
237             fail "$resultmsg"
238           }
239           set failed 1
240           break
241         }
242       }
243       if { $failed } {
244         continue
245       } else {
246         if { $PRNUMS != "" } {
247           set PRNUMS " for $PRNUMS"
248         }
249         if { $outcome == "XFAIL" } {
250           xpass "$test$PRNUMS"
251         } else {
252           pass "$test$PRNUMS"
253         }
254       }
255     }
256   }
257 }
258
259 # This procedure provides an interface to check the LLVMGCC_LANGS makefile
260 # variable to see if llvm-gcc supports compilation of a particular language.
261 proc llvm_gcc_supports { lang } {
262   global llvmgcc llvmgcc_langs
263   # validate the language choices and determine the name of the compiler
264   # component responsible for determining if the compiler has been built.
265   switch "$lang" {
266     ada     { set file gnat1 }
267     c       { set file cc1 }
268     c++     { set file cc1plus }
269     objc    { set file cc1obj }
270     obj-c++ { set file cc1objplus }
271     fortran { set file f951 }
272     default { return 0 }
273   }
274   foreach supported_lang [split "$llvmgcc_langs" ,] {
275     if { "$lang" == "$supported_lang" } {
276       # FIXME: Knowing it is configured is not enough. We should do two more
277       # checks here. First, we need to run llvm-gcc -print-prog-name=$file to
278       # get the path to the compiler. If we don't get a path, the language isn't
279       # properly configured or built. If we do get a path, we should check to
280       # make sure that it is executable and perhaps even try executing it.
281       return 1;
282     }
283   }
284   return 0;
285 }
286
287 # This procedure provides an interface to check the TARGETS_TO_BUILD makefile
288 # variable to see if a particular target has been configured to build. This
289 # helps avoid running tests for targets that aren't available.
290 proc llvm_supports_target { tgtName } {
291   global TARGETS_TO_BUILD
292   foreach target [split $TARGETS_TO_BUILD] {
293     if { [regexp $tgtName $target match] } {
294       return 1
295     }
296   }
297   return 0
298 }