1 # This file defines a tcl proc to assist with testing the llvm2cpp. There are
2 # no llvm2cpp specific test cases. Instead, it utilizes all the existing test
3 # cases and makes sure llvm2cpp can run them. The basic idea is that we find
4 # all the LLVM Assembly (*.ll) files, run llvm2cpp on them to generate a C++
5 # program, compile those programs, run them and see if what they produce matches
6 # the original input to llvm2cpp.
8 proc llvm2cpp-test { files } {
9 global subdir llvmtoolsdir llvmlibsdir objdir srcdir objroot srcroot
11 set path [file join $objdir $subdir]
12 set llc [file join $llvmtoolsdir llc ]
13 set llvmas [file join $llvmtoolsdir llvm-as ]
14 set llvmdis [file join $llvmtoolsdir llvm-dis ]
16 #Make Output Directory if it does not exist already
17 if { [file exists path] } {
28 set filename [file tail $test]
29 set generated [file join Output $filename.cpp]
30 set executable [file join Output $filename.exe]
31 set output [file join Output $filename.gen]
32 set assembly [file join Output $filename.asm]
33 set testname [file rootname $filename]
34 set bytecode [file join Output $filename.bc]
36 # Note that the stderr for llvm-as, etc. must be redirected to /dev/null
37 # because otherwise exec will see the msgs and return 1 even though they
38 # are only warnings. If real errors are generated on stderr then llvm-as
39 # will return a non-zero retval anyway so we're good.
41 # Scan the test file to see if there's an XFAIL file. If so, don't run it
43 exec -keepnewline grep XFAIL $test 2>/dev/null } msg ]
48 # Run llvm-as/llvm-dis
49 set pipeline llvm-as|llvm-dis
51 exec -keepnewline $llvmas < $test -o - | $llvmdis -o $assembly 2>/dev/null } msg ]
54 fail "$test: $pipeline returned $retval\n$msg"
58 # Build bytecode for llvm2cpp input
60 exec -keepnewline $llvmas < $assembly > $bytecode 2>/dev/null } msg ]
63 fail "$test: llvm-as returned $retval\n$msg"
68 exec -keepnewline $llc -march=cpp -o $generated < $bytecode 2>/dev/null } msg]
71 fail "$test: llvm2cpp returned $retval\n$msg"
76 exec -keepnewline gcc -g -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -o $executable $generated -I$srcroot/include -I$objroot/include -L$llvmlibsdir -lLLVMCore -lLLVMSupport -lLLVMSystem -lstdc++ } msg ]
78 fail "$test: gcc returned $retval\n$msg"
82 set retval [ catch { exec -keepnewline $executable > $output } msg ]
84 set execname [file tail $executable]
85 fail "$test: $execname returned $retval:\n$msg"
90 exec -keepnewline diff $assembly $output } msg ]
93 fail "$test: diff returned $retval:\n$msg"