From 6b5e36b0fe03b9be11194916c066664d98153a14 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Tue, 7 Jul 2009 20:17:48 -0400 Subject: canonicalize exelib.exp test case names by [file tail /full/path] --- testsuite/systemtap.exelib/exelib.exp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'testsuite') diff --git a/testsuite/systemtap.exelib/exelib.exp b/testsuite/systemtap.exelib/exelib.exp index d3ade2b6..c4ca8fc0 100644 --- a/testsuite/systemtap.exelib/exelib.exp +++ b/testsuite/systemtap.exelib/exelib.exp @@ -95,10 +95,10 @@ foreach arch $arches { set res [target_compile $testsrclib $testso executable $testlibflags] if { $res != "" } { verbose "target_compile for $testso failed: $res" 2 - fail "$libname compile $testsrclib" + fail "$libname compile [file tail $testsrclib]" return } else { - pass "$libname compile $testsrclib" + pass "$libname compile [file tail $testsrclib]" } # seperate debuginfo before prelinking @@ -147,10 +147,10 @@ foreach arch $arches { set res [target_compile $testsrc $testexe executable $testexeflags] if { $res != "" } { verbose "target_compile for $testexe failed: $res" 2 - fail "$exename compile $testsrc" + fail "$exename compile [file tail $testsrc]" return } else { - pass "$exename compile $testsrc" + pass "$exename compile [file tail $testsrc]" } if {$exedebug == "sep"} { -- cgit