blob: 921bcb5ddd7f906f4fac3d1b1867ab1c1c02953a [file] [log] [blame]
Reid Spencer12d81f32007-04-21 21:45:51 +00001# This procedure executes one line of a test case's execution script.
Reid Spencer90016c72007-04-14 19:37:22 +00002proc execOneLine { test PRS outcome lineno line } {
Reid Spencer316abe42007-04-14 09:39:28 +00003 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]
Reid Spencer520b4872007-04-14 16:41:39 +00008 set lineno [expr $lineno + 1]
Reid Spencer90016c72007-04-14 19:37:22 +00009 if { $PRS != ""} {
10 set PRS " for $PRS"
11 }
Reid Spencer6cdf4a92007-04-21 18:53:12 +000012 set errmsg " at line $lineno\nwhile running: $line\n$errmsg"
Reid Spencer316abe42007-04-14 09:39:28 +000013 switch "$code" {
14 CHILDSTATUS {
15 set status [lindex $::errorCode 2]
Duncan Sands25d50d62007-04-16 15:37:00 +000016 if { $status != 0 } {
Reid Spencer6cdf4a92007-04-21 18:53:12 +000017 set resultmsg "$test$PRS\nFailed with exit($status)$errmsg"
Reid Spencer316abe42007-04-14 09:39:28 +000018 }
19 }
20 CHILDKILLED {
21 set signal [lindex $::errorCode 2]
Reid Spencer6cdf4a92007-04-21 18:53:12 +000022 set resultmsg "$test$PRS\nFailed with signal($signal)$errmsg"
Reid Spencer316abe42007-04-14 09:39:28 +000023 }
24 CHILDSUSP {
25 set signal [lindex $::errorCode 2]
Reid Spencer6cdf4a92007-04-21 18:53:12 +000026 set resultmsg "$test$PRS\nFailed with suspend($signal)$errmsg"
Reid Spencer316abe42007-04-14 09:39:28 +000027 }
28 POSIX {
29 set posixNum [lindex $::errorCode 1]
30 set posixMsg [lindex $::errorCode 2]
Reid Spencer6cdf4a92007-04-21 18:53:12 +000031 set resultmsg "$test$PRS\nFailed with posix($posixNum,$posixMsg)$errmsg"
Reid Spencer316abe42007-04-14 09:39:28 +000032 }
33 NONE {
34 }
35 default {
36 }
37 }
38 }
39 return $resultmsg
40}
41
Duncan Sands7d841a42007-05-18 12:13:34 +000042# This procedure performs variable substitutions on the RUN: lines of a test
Reid Spencer12d81f32007-04-21 21:45:51 +000043# cases.
Reid Spencer316abe42007-04-14 09:39:28 +000044proc substitute { line test tmpFile } {
45 global srcroot objroot srcdir objdir subdir target_triplet prcontext
Gordon Henriksen8ef426b2007-09-18 12:49:39 +000046 global llvmgcc llvmgxx llvmgcc_version llvmgccmajvers ocamlc
Reid Spencer316abe42007-04-14 09:39:28 +000047 global gccpath gxxpath compile_c compile_cxx link shlibext llvmlibsdir
Reid Spencer78fb2ac2007-04-14 22:51:29 +000048 set path [file join $srcdir $subdir]
Reid Spencer316abe42007-04-14 09:39:28 +000049
Reid Spencer0947df42007-04-15 07:21:26 +000050 # Substitute all Tcl variables.
51 set new_line [subst $line ]
52
Reid Spencer316abe42007-04-14 09:39:28 +000053 #replace %prcontext with prcontext.tcl (Must replace before %p)
54 regsub -all {%prcontext} $new_line $prcontext new_line
55 #replace %llvmgcc with actual path to llvmgcc
56 regsub -all {%llvmgcc} $new_line "$llvmgcc -emit-llvm" new_line
57 #replace %llvmgxx with actual path to llvmg++
58 regsub -all {%llvmgxx} $new_line "$llvmgxx -emit-llvm" new_line
59 #replace %compile_c with C compilation command
60 regsub -all {%compile_c} $new_line "$compile_c" new_line
61 #replace %compile_cxx with C++ compilation command
62 regsub -all {%compile_cxx} $new_line "$compile_cxx" new_line
63 #replace %link with C++ link command
64 regsub -all {%link} $new_line "$link" new_line
65 #replace %shlibext with shared library extension
66 regsub -all {%shlibext} $new_line "$shlibext" new_line
Gordon Henriksen8ef426b2007-09-18 12:49:39 +000067 #replace %ocamlc with ocaml compiler command
68 regsub -all {%ocamlc} $new_line "$ocamlc" new_line
Reid Spencer316abe42007-04-14 09:39:28 +000069 #replace %llvmlibsdir with configure library directory
70 regsub -all {%llvmlibsdir} $new_line "$llvmlibsdir" new_line
71 #replace %p with path to source,
72 regsub -all {%p} $new_line [file join $srcdir $subdir] new_line
73 #replace %s with filename
74 regsub -all {%s} $new_line $test new_line
75 #replace %t with temp filenames
Duncan Sands6c7ada42007-07-23 15:23:35 +000076 regsub -all {%t} $new_line $tmpFile new_line
Reid Spencer12ca929c2007-04-15 04:57:03 +000077 #replace %% with %
78 regsub -all {%%} $new_line % new_line
Reid Spencer316abe42007-04-14 09:39:28 +000079 return $new_line
80}
81
Reid Spencer12d81f32007-04-21 21:45:51 +000082# This procedure runs the set of tests for the test_source_files array.
Reid Spencer78fb2ac2007-04-14 22:51:29 +000083proc RunLLVMTests { test_source_files } {
Reid Spencerfb7653e2007-04-15 20:43:36 +000084 global srcroot objroot srcdir objdir subdir target_triplet llvmgcc_version
Reid Spencer316abe42007-04-14 09:39:28 +000085 set timeout 60
86
87 set path [file join $objdir $subdir]
88
89 #Make Output Directory if it does not exist already
90 if { [file exists path] } {
91 cd $path
92 } else {
93 file mkdir $path
94 cd $path
95 }
96
97 file mkdir Output
Duncan Sands6c7ada42007-07-23 15:23:35 +000098 cd Output
Reid Spencer316abe42007-04-14 09:39:28 +000099
Reid Spencer78fb2ac2007-04-14 22:51:29 +0000100 foreach test $test_source_files {
Reid Spencer316abe42007-04-14 09:39:28 +0000101 #Should figure out best way to set the timeout
102 #set timeout 40
103
104 set filename [file tail $test]
105 set outcome PASS
106 set tmpFile "$filename.tmp"
107
108 #set hasRunline bool to check if testcase has a runline
109 set numLines 0
110
111 # Open the test file and start reading lines
112 set testFileId [ open $test r]
113 set runline ""
Reid Spencer90016c72007-04-14 19:37:22 +0000114 set PRNUMS ""
Reid Spencerfb7653e2007-04-15 20:43:36 +0000115 foreach line [split [read $testFileId] \n] {
Reid Spencer316abe42007-04-14 09:39:28 +0000116
Reid Spencer90016c72007-04-14 19:37:22 +0000117 # if its the END. line then stop parsing (optimization for big files)
Reid Spencer316abe42007-04-14 09:39:28 +0000118 if {[regexp {END.[ *]$} $line match endofscript]} {
119 break
Reid Spencer90016c72007-04-14 19:37:22 +0000120
Duncan Sands3724df32007-04-16 21:19:45 +0000121 # if the line is continued, concatenate and continue the loop
Reid Spencer601e8452007-04-15 18:38:42 +0000122 } elseif {[regexp {RUN: *(.+)(\\)$} $line match oneline suffix]} {
Reid Spencer316abe42007-04-14 09:39:28 +0000123 set runline "$runline$oneline "
Reid Spencer90016c72007-04-14 19:37:22 +0000124
125 # if its a terminating RUN: line then do substitution on the whole line
126 # and then save the line.
Reid Spencer316abe42007-04-14 09:39:28 +0000127 } elseif {[regexp {RUN: *([^&]+)(&&)?} $line match oneline suffix]} {
128 set runline "$runline$oneline"
129 set runline [ substitute $runline $test $tmpFile ]
130 set lines($numLines) $runline
131 set numLines [expr $numLines + 1]
132 set runline ""
Reid Spencer90016c72007-04-14 19:37:22 +0000133
134 # if its an PR line, save the problem report number
135 } elseif {[regexp {PR([0-9]+)} $line match prnum]} {
136 if {$PRNUMS == ""} {
Reid Spencer66959ce2007-04-15 10:27:54 +0000137 set PRNUMS "PR$prnum"
Reid Spencer90016c72007-04-14 19:37:22 +0000138 } else {
139 set PRNUMS "$PRNUMS,$prnum"
140 }
141 # if its an XFAIL line, see if we should be XFAILing or not.
Reid Spencer316abe42007-04-14 09:39:28 +0000142 } elseif {[regexp {XFAIL:[ *](.+)} $line match targets]} {
143 set targets
144
145 #split up target if more then 1 specified
146 foreach target [split $targets ,] {
147 if { [regexp {\*} $target match] } {
148 set outcome XFAIL
149 } elseif { [regexp $target $target_triplet match] } {
150 set outcome XFAIL
151 } elseif { [regexp {llvmgcc(([0-9]+)|([0-9]+[.][0-9]+))} $target match submatch submatch2] } {
152 if { [regexp ^($submatch)$|^(($submatch)(\.)) $llvmgcc_version match] } {
153 set outcome XFAIL
154 }
155 }
156 }
157 }
158 }
159
160 # Done reading the script
161 close $testFileId
162
163
164 if { $numLines == 0 } {
165 fail "$test: \nDoes not have a RUN line\n"
166 } else {
167 set failed 0
168 for { set i 0 } { $i < $numLines } { set i [ expr $i + 1 ] } {
169 regsub ^.*RUN:(.*) $lines($i) \1 theLine
Reid Spencer90016c72007-04-14 19:37:22 +0000170 set resultmsg [execOneLine $test $PRNUMS $outcome $i $theLine ]
Reid Spencer316abe42007-04-14 09:39:28 +0000171 if { $resultmsg != "" } {
172 if { $outcome == "XFAIL" } {
173 xfail "$resultmsg"
174 } else {
175 fail "$resultmsg"
176 }
177 set failed 1
178 break
179 }
180 }
Reid Spencer0947df42007-04-15 07:21:26 +0000181 if { $failed } {
Reid Spencerb0feffa2007-04-15 07:34:58 +0000182 continue
Reid Spencer0947df42007-04-15 07:21:26 +0000183 } else {
184 if { $PRNUMS != "" } {
Reid Spencer90016c72007-04-14 19:37:22 +0000185 set PRNUMS " for $PRNUMS"
186 }
Reid Spencer316abe42007-04-14 09:39:28 +0000187 if { $outcome == "XFAIL" } {
Reid Spencer90016c72007-04-14 19:37:22 +0000188 xpass "$test$PRNUMS"
Reid Spencer316abe42007-04-14 09:39:28 +0000189 } else {
Reid Spencer90016c72007-04-14 19:37:22 +0000190 pass "$test$PRNUMS"
Reid Spencer316abe42007-04-14 09:39:28 +0000191 }
192 }
193 }
194 }
195}
Devang Patel9fe99072007-04-20 21:24:01 +0000196
Reid Spencer12d81f32007-04-21 21:45:51 +0000197# This procedure provides an interface to check the LLVMGCC_LANGS makefile
198# variable to see if llvm-gcc supports compilation of a particular language.
199proc llvm_gcc_supports { lang } {
200 global llvmgcc llvmgcc_langs
201 # validate the language choices and determine the name of the compiler
202 # component responsible for determining if the compiler has been built.
203 switch "$lang" {
204 ada { set file gnat1 }
205 c { set file cc1 }
206 c++ { set file cc1plus }
207 objc { set file cc1 }
208 objc++ { set file cc1 }
209 fortran { set file fcc1 }
210 default { return 0 }
211 }
Reid Spencer4f6e9ab2007-04-23 21:21:53 +0000212 foreach supported_lang [split "$llvmgcc_langs" ,] {
213 if { "$lang" == "$supported_lang" } {
214 # FIXME: Knowing it is configured is not enough. We should do two more
215 # checks here. First, we need to run llvm-gcc -print-prog-name=$file to
216 # get the path to the compiler. If we don't get a path, the language isn't
217 # properly configured or built. If we do get a path, we should check to
218 # make sure that it is executable and perhaps even try executing it.
219 return 1;
220 }
Reid Spencer12d81f32007-04-21 21:45:51 +0000221 }
222 return 0;
Duncan Sands4e9471d2007-04-21 20:20:47 +0000223}
224
Reid Spencer12d81f32007-04-21 21:45:51 +0000225# This procedure provides an interface to check the TARGETS_TO_BUILD makefile
226# variable to see if a particular target has been configured to build. This
227# helps avoid running tests for targets that aren't available.
Reid Spencer40a4c612007-04-21 20:40:17 +0000228proc llvm_supports_target { tgtName } {
229 global TARGETS_TO_BUILD
230 foreach target [split $TARGETS_TO_BUILD] {
231 if { [regexp $tgtName $target match] } {
232 return 1
233 }
234 }
235 return 0
236}