2007-04-21 21:45:51 +00:00
|
|
|
# This procedure executes one line of a test case's execution script.
|
2007-04-14 19:37:22 +00:00
|
|
|
proc execOneLine { test PRS outcome lineno line } {
|
2007-04-14 09:39:28 +00:00
|
|
|
set status 0
|
|
|
|
set resultmsg ""
|
|
|
|
set retval [ catch { eval exec -keepnewline -- $line } errmsg ]
|
|
|
|
if { $retval != 0 } {
|
|
|
|
set code [lindex $::errorCode 0]
|
2007-04-14 16:41:39 +00:00
|
|
|
set lineno [expr $lineno + 1]
|
2007-04-14 19:37:22 +00:00
|
|
|
if { $PRS != ""} {
|
|
|
|
set PRS " for $PRS"
|
|
|
|
}
|
2007-04-21 18:53:12 +00:00
|
|
|
set errmsg " at line $lineno\nwhile running: $line\n$errmsg"
|
2007-04-14 09:39:28 +00:00
|
|
|
switch "$code" {
|
|
|
|
CHILDSTATUS {
|
|
|
|
set status [lindex $::errorCode 2]
|
2007-04-16 15:37:00 +00:00
|
|
|
if { $status != 0 } {
|
2007-04-21 18:53:12 +00:00
|
|
|
set resultmsg "$test$PRS\nFailed with exit($status)$errmsg"
|
2007-04-14 09:39:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
CHILDKILLED {
|
|
|
|
set signal [lindex $::errorCode 2]
|
2007-04-21 18:53:12 +00:00
|
|
|
set resultmsg "$test$PRS\nFailed with signal($signal)$errmsg"
|
2007-04-14 09:39:28 +00:00
|
|
|
}
|
|
|
|
CHILDSUSP {
|
|
|
|
set signal [lindex $::errorCode 2]
|
2007-04-21 18:53:12 +00:00
|
|
|
set resultmsg "$test$PRS\nFailed with suspend($signal)$errmsg"
|
2007-04-14 09:39:28 +00:00
|
|
|
}
|
|
|
|
POSIX {
|
|
|
|
set posixNum [lindex $::errorCode 1]
|
|
|
|
set posixMsg [lindex $::errorCode 2]
|
2007-04-21 18:53:12 +00:00
|
|
|
set resultmsg "$test$PRS\nFailed with posix($posixNum,$posixMsg)$errmsg"
|
2007-04-14 09:39:28 +00:00
|
|
|
}
|
|
|
|
NONE {
|
|
|
|
}
|
|
|
|
default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $resultmsg
|
|
|
|
}
|
|
|
|
|
2007-05-18 12:13:34 +00:00
|
|
|
# This procedure performs variable substitutions on the RUN: lines of a test
|
2007-04-21 21:45:51 +00:00
|
|
|
# cases.
|
2007-04-14 09:39:28 +00:00
|
|
|
proc substitute { line test tmpFile } {
|
|
|
|
global srcroot objroot srcdir objdir subdir target_triplet prcontext
|
2007-09-18 12:49:39 +00:00
|
|
|
global llvmgcc llvmgxx llvmgcc_version llvmgccmajvers ocamlc
|
2007-04-14 09:39:28 +00:00
|
|
|
global gccpath gxxpath compile_c compile_cxx link shlibext llvmlibsdir
|
2007-04-14 22:51:29 +00:00
|
|
|
set path [file join $srcdir $subdir]
|
2007-04-14 09:39:28 +00:00
|
|
|
|
2007-04-15 07:21:26 +00:00
|
|
|
# Substitute all Tcl variables.
|
|
|
|
set new_line [subst $line ]
|
|
|
|
|
2007-04-14 09:39:28 +00:00
|
|
|
#replace %prcontext with prcontext.tcl (Must replace before %p)
|
|
|
|
regsub -all {%prcontext} $new_line $prcontext new_line
|
|
|
|
#replace %llvmgcc with actual path to llvmgcc
|
|
|
|
regsub -all {%llvmgcc} $new_line "$llvmgcc -emit-llvm" new_line
|
|
|
|
#replace %llvmgxx with actual path to llvmg++
|
|
|
|
regsub -all {%llvmgxx} $new_line "$llvmgxx -emit-llvm" new_line
|
|
|
|
#replace %compile_c with C compilation command
|
|
|
|
regsub -all {%compile_c} $new_line "$compile_c" new_line
|
|
|
|
#replace %compile_cxx with C++ compilation command
|
|
|
|
regsub -all {%compile_cxx} $new_line "$compile_cxx" new_line
|
|
|
|
#replace %link with C++ link command
|
|
|
|
regsub -all {%link} $new_line "$link" new_line
|
|
|
|
#replace %shlibext with shared library extension
|
|
|
|
regsub -all {%shlibext} $new_line "$shlibext" new_line
|
2007-09-18 12:49:39 +00:00
|
|
|
#replace %ocamlc with ocaml compiler command
|
|
|
|
regsub -all {%ocamlc} $new_line "$ocamlc" new_line
|
2007-04-14 09:39:28 +00:00
|
|
|
#replace %llvmlibsdir with configure library directory
|
|
|
|
regsub -all {%llvmlibsdir} $new_line "$llvmlibsdir" new_line
|
|
|
|
#replace %p with path to source,
|
|
|
|
regsub -all {%p} $new_line [file join $srcdir $subdir] new_line
|
|
|
|
#replace %s with filename
|
|
|
|
regsub -all {%s} $new_line $test new_line
|
|
|
|
#replace %t with temp filenames
|
2007-07-23 15:23:35 +00:00
|
|
|
regsub -all {%t} $new_line $tmpFile new_line
|
2007-04-15 04:57:03 +00:00
|
|
|
#replace %% with %
|
|
|
|
regsub -all {%%} $new_line % new_line
|
2007-04-14 09:39:28 +00:00
|
|
|
return $new_line
|
|
|
|
}
|
|
|
|
|
2007-04-21 21:45:51 +00:00
|
|
|
# This procedure runs the set of tests for the test_source_files array.
|
2007-04-14 22:51:29 +00:00
|
|
|
proc RunLLVMTests { test_source_files } {
|
2007-04-15 20:43:36 +00:00
|
|
|
global srcroot objroot srcdir objdir subdir target_triplet llvmgcc_version
|
2007-04-14 09:39:28 +00:00
|
|
|
set timeout 60
|
|
|
|
|
|
|
|
set path [file join $objdir $subdir]
|
|
|
|
|
|
|
|
#Make Output Directory if it does not exist already
|
|
|
|
if { [file exists path] } {
|
|
|
|
cd $path
|
|
|
|
} else {
|
|
|
|
file mkdir $path
|
|
|
|
cd $path
|
|
|
|
}
|
|
|
|
|
|
|
|
file mkdir Output
|
2007-07-23 15:23:35 +00:00
|
|
|
cd Output
|
2007-04-14 09:39:28 +00:00
|
|
|
|
2007-04-14 22:51:29 +00:00
|
|
|
foreach test $test_source_files {
|
2007-04-14 09:39:28 +00:00
|
|
|
#Should figure out best way to set the timeout
|
|
|
|
#set timeout 40
|
|
|
|
|
|
|
|
set filename [file tail $test]
|
|
|
|
set outcome PASS
|
|
|
|
set tmpFile "$filename.tmp"
|
|
|
|
|
|
|
|
#set hasRunline bool to check if testcase has a runline
|
|
|
|
set numLines 0
|
|
|
|
|
|
|
|
# Open the test file and start reading lines
|
|
|
|
set testFileId [ open $test r]
|
|
|
|
set runline ""
|
2007-04-14 19:37:22 +00:00
|
|
|
set PRNUMS ""
|
2007-04-15 20:43:36 +00:00
|
|
|
foreach line [split [read $testFileId] \n] {
|
2007-04-14 09:39:28 +00:00
|
|
|
|
2007-04-14 19:37:22 +00:00
|
|
|
# if its the END. line then stop parsing (optimization for big files)
|
2007-04-14 09:39:28 +00:00
|
|
|
if {[regexp {END.[ *]$} $line match endofscript]} {
|
|
|
|
break
|
2007-04-14 19:37:22 +00:00
|
|
|
|
2007-04-16 21:19:45 +00:00
|
|
|
# if the line is continued, concatenate and continue the loop
|
2007-04-15 18:38:42 +00:00
|
|
|
} elseif {[regexp {RUN: *(.+)(\\)$} $line match oneline suffix]} {
|
2007-04-14 09:39:28 +00:00
|
|
|
set runline "$runline$oneline "
|
2007-04-14 19:37:22 +00:00
|
|
|
|
|
|
|
# if its a terminating RUN: line then do substitution on the whole line
|
|
|
|
# and then save the line.
|
2007-04-14 09:39:28 +00:00
|
|
|
} elseif {[regexp {RUN: *([^&]+)(&&)?} $line match oneline suffix]} {
|
|
|
|
set runline "$runline$oneline"
|
|
|
|
set runline [ substitute $runline $test $tmpFile ]
|
|
|
|
set lines($numLines) $runline
|
|
|
|
set numLines [expr $numLines + 1]
|
|
|
|
set runline ""
|
2007-04-14 19:37:22 +00:00
|
|
|
|
|
|
|
# if its an PR line, save the problem report number
|
|
|
|
} elseif {[regexp {PR([0-9]+)} $line match prnum]} {
|
|
|
|
if {$PRNUMS == ""} {
|
2007-04-15 10:27:54 +00:00
|
|
|
set PRNUMS "PR$prnum"
|
2007-04-14 19:37:22 +00:00
|
|
|
} else {
|
|
|
|
set PRNUMS "$PRNUMS,$prnum"
|
|
|
|
}
|
|
|
|
# if its an XFAIL line, see if we should be XFAILing or not.
|
2007-04-14 09:39:28 +00:00
|
|
|
} elseif {[regexp {XFAIL:[ *](.+)} $line match targets]} {
|
|
|
|
set targets
|
|
|
|
|
|
|
|
#split up target if more then 1 specified
|
|
|
|
foreach target [split $targets ,] {
|
|
|
|
if { [regexp {\*} $target match] } {
|
|
|
|
set outcome XFAIL
|
|
|
|
} elseif { [regexp $target $target_triplet match] } {
|
|
|
|
set outcome XFAIL
|
|
|
|
} elseif { [regexp {llvmgcc(([0-9]+)|([0-9]+[.][0-9]+))} $target match submatch submatch2] } {
|
|
|
|
if { [regexp ^($submatch)$|^(($submatch)(\.)) $llvmgcc_version match] } {
|
|
|
|
set outcome XFAIL
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Done reading the script
|
|
|
|
close $testFileId
|
|
|
|
|
|
|
|
|
|
|
|
if { $numLines == 0 } {
|
|
|
|
fail "$test: \nDoes not have a RUN line\n"
|
|
|
|
} else {
|
|
|
|
set failed 0
|
|
|
|
for { set i 0 } { $i < $numLines } { set i [ expr $i + 1 ] } {
|
|
|
|
regsub ^.*RUN:(.*) $lines($i) \1 theLine
|
2007-04-14 19:37:22 +00:00
|
|
|
set resultmsg [execOneLine $test $PRNUMS $outcome $i $theLine ]
|
2007-04-14 09:39:28 +00:00
|
|
|
if { $resultmsg != "" } {
|
|
|
|
if { $outcome == "XFAIL" } {
|
|
|
|
xfail "$resultmsg"
|
|
|
|
} else {
|
|
|
|
fail "$resultmsg"
|
|
|
|
}
|
|
|
|
set failed 1
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2007-04-15 07:21:26 +00:00
|
|
|
if { $failed } {
|
2007-04-15 07:34:58 +00:00
|
|
|
continue
|
2007-04-15 07:21:26 +00:00
|
|
|
} else {
|
|
|
|
if { $PRNUMS != "" } {
|
2007-04-14 19:37:22 +00:00
|
|
|
set PRNUMS " for $PRNUMS"
|
|
|
|
}
|
2007-04-14 09:39:28 +00:00
|
|
|
if { $outcome == "XFAIL" } {
|
2007-04-14 19:37:22 +00:00
|
|
|
xpass "$test$PRNUMS"
|
2007-04-14 09:39:28 +00:00
|
|
|
} else {
|
2007-04-14 19:37:22 +00:00
|
|
|
pass "$test$PRNUMS"
|
2007-04-14 09:39:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-04-20 21:24:01 +00:00
|
|
|
|
2007-04-21 21:45:51 +00:00
|
|
|
# This procedure provides an interface to check the LLVMGCC_LANGS makefile
|
|
|
|
# variable to see if llvm-gcc supports compilation of a particular language.
|
|
|
|
proc llvm_gcc_supports { lang } {
|
|
|
|
global llvmgcc llvmgcc_langs
|
|
|
|
# validate the language choices and determine the name of the compiler
|
|
|
|
# component responsible for determining if the compiler has been built.
|
|
|
|
switch "$lang" {
|
|
|
|
ada { set file gnat1 }
|
|
|
|
c { set file cc1 }
|
|
|
|
c++ { set file cc1plus }
|
|
|
|
objc { set file cc1 }
|
|
|
|
objc++ { set file cc1 }
|
|
|
|
fortran { set file fcc1 }
|
|
|
|
default { return 0 }
|
|
|
|
}
|
2007-04-23 21:21:53 +00:00
|
|
|
foreach supported_lang [split "$llvmgcc_langs" ,] {
|
|
|
|
if { "$lang" == "$supported_lang" } {
|
|
|
|
# FIXME: Knowing it is configured is not enough. We should do two more
|
|
|
|
# checks here. First, we need to run llvm-gcc -print-prog-name=$file to
|
|
|
|
# get the path to the compiler. If we don't get a path, the language isn't
|
|
|
|
# properly configured or built. If we do get a path, we should check to
|
|
|
|
# make sure that it is executable and perhaps even try executing it.
|
|
|
|
return 1;
|
|
|
|
}
|
2007-04-21 21:45:51 +00:00
|
|
|
}
|
|
|
|
return 0;
|
2007-04-20 21:24:01 +00:00
|
|
|
}
|
|
|
|
|
2007-04-21 21:45:51 +00:00
|
|
|
# This procedure provides an interface to check the TARGETS_TO_BUILD makefile
|
|
|
|
# variable to see if a particular target has been configured to build. This
|
|
|
|
# helps avoid running tests for targets that aren't available.
|
2007-04-21 20:40:17 +00:00
|
|
|
proc llvm_supports_target { tgtName } {
|
|
|
|
global TARGETS_TO_BUILD
|
|
|
|
foreach target [split $TARGETS_TO_BUILD] {
|
|
|
|
if { [regexp $tgtName $target match] } {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|