diff options
Diffstat (limited to 'test/lib/llvm.exp')
-rw-r--r-- | test/lib/llvm.exp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp index 2857dd82..158cc54c 100644 --- a/test/lib/llvm.exp +++ b/test/lib/llvm.exp @@ -43,8 +43,8 @@ proc execOneLine { test PRS outcome lineno line } { # cases. proc substitute { line test tmpFile } { global srcroot objroot srcdir objdir subdir target_triplet prcontext - global llvmgcc llvmgxx llvmgcc_version llvmgccmajvers - global gccpath gxxpath compile_c compile_cxx link shlibext llvmlibsdir + global llvmgcc llvmgxx llvmgcc_version + global gccpath gxxpath compile_c compile_cxx link llvmlibsdir global llvmtoolsdir set path [file join $srcdir $subdir] @@ -63,8 +63,6 @@ proc substitute { line test tmpFile } { 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 #replace %llvmlibsdir with configure library directory regsub -all {%llvmlibsdir} $new_line "$llvmlibsdir" new_line #replace %klee with klee binary |