From 09f50008739b1504f69a8b72d2ab665e40f13dd4 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 12 Apr 2007 02:49:30 +0000 Subject: Make the shlibext and llvmlibsdir variables accessible. llvm-svn: 35939 --- llvm/test/lib/llvm-dg.exp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'llvm/test/lib') diff --git a/llvm/test/lib/llvm-dg.exp b/llvm/test/lib/llvm-dg.exp index 4d04713bceb..6f83800888d 100644 --- a/llvm/test/lib/llvm-dg.exp +++ b/llvm/test/lib/llvm-dg.exp @@ -1,7 +1,7 @@ proc llvm-runtest { programs } { global srcroot objroot srcdir objdir subdir target_triplet prcontext global llvmgcc llvmgxx global llvmgcc_version llvmgccmajvers - global gccpath gxxpath compile_c compile_cxx link + global gccpath gxxpath compile_c compile_cxx link shlibext llvmlibsdir set timeout 60 @@ -60,6 +60,10 @@ proc llvm-runtest { programs } { regsub -all {%compile_cxx} $new_runline "$compile_cxx" new_runline #replace %link with C++ link command regsub -all {%link} $new_runline "$link" new_runline + #replace %shlibext with shared library extension + regsub -all {%shlibext} $new_runline "$shlibext" new_runline + #replace %llvmlibsdir with configure library directory + regsub -all {%llvmlibsdir} $new_runline "$llvmlibsdir" new_runline #replace %p with path to source, regsub -all {%p} $new_runline [file join $srcdir $subdir] new_runline #replace %s with filename -- cgit v1.2.3