From: David Billinghurst Date: Tue, 18 Dec 2001 23:34:06 +0000 (+0000) Subject: libstdc++-v3-dg.exp: Append .exe to executable filenames X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c6d96f20fdf9caad7e3fe1939b78295241df0036;p=platform%2Fupstream%2Fgcc.git libstdc++-v3-dg.exp: Append .exe to executable filenames 2001-12-19 David Billinghurst libstdc++-v3/5148 * testsuite/lib/libstdc++-v3-dg.exp: Append .exe to executable filenames From-SVN: r48167 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7157fc1..cc52be3 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2001-12-19 David Billinghurst + + libstdc++-v3/5148 + * testsuite/lib/libstdc++-v3-dg.exp: Append .exe to + executable filenames + 2001-12-18 Benjamin Kosnik * docs/html/17_intro/TODO: Update. diff --git a/libstdc++-v3/testsuite/lib/libstdc++-v3-dg.exp b/libstdc++-v3/testsuite/lib/libstdc++-v3-dg.exp index d63301c..bf1a806 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++-v3-dg.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++-v3-dg.exp @@ -124,14 +124,14 @@ proc libstdc++-v3-dg-test { prog do_what extra_tool_flags } { } "link" { set compile_type "executable" - set output_file "./[file rootname [file tail $prog]]" + set output_file "./[file rootname [file tail $prog]].exe" } "run" { set compile_type "executable" # FIXME: "./" is to cope with "." not being in $PATH. # Should this be handled elsewhere? # YES. - set output_file "./[file rootname [file tail $prog]]" + set output_file "./[file rootname [file tail $prog]].exe" # This is the only place where we care if an executable was # created or not. If it was, dg.exp will try to run it. remote_file build delete $output_file;