diff options
author | David Billinghurst <David.Billinghurst@riotinto.com> | 2001-12-18 23:34:06 +0000 |
---|---|---|
committer | David Billinghurst <billingd@gcc.gnu.org> | 2001-12-18 23:34:06 +0000 |
commit | c6d96f20fdf9caad7e3fe1939b78295241df0036 (patch) | |
tree | 7c65457c756faf4a1fb92a37c6f61be46176874f | |
parent | 0366770096c827a06e15123753f566d807d4899a (diff) | |
download | gcc-c6d96f20fdf9caad7e3fe1939b78295241df0036.zip gcc-c6d96f20fdf9caad7e3fe1939b78295241df0036.tar.gz gcc-c6d96f20fdf9caad7e3fe1939b78295241df0036.tar.bz2 |
libstdc++-v3-dg.exp: Append .exe to executable filenames
2001-12-19 David Billinghurst <David.Billinghurst@riotinto.com>
libstdc++-v3/5148
* testsuite/lib/libstdc++-v3-dg.exp: Append .exe to
executable filenames
From-SVN: r48167
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/lib/libstdc++-v3-dg.exp | 4 |
2 files changed, 8 insertions, 2 deletions
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 <David.Billinghurst@riotinto.com> + + libstdc++-v3/5148 + * testsuite/lib/libstdc++-v3-dg.exp: Append .exe to + executable filenames + 2001-12-18 Benjamin Kosnik <bkoz@redhat.com> * 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; |