libstdc++-v3-dg.exp: Append .exe to executable filenames
authorDavid Billinghurst <David.Billinghurst@riotinto.com>
Tue, 18 Dec 2001 23:34:06 +0000 (23:34 +0000)
committerDavid Billinghurst <billingd@gcc.gnu.org>
Tue, 18 Dec 2001 23:34:06 +0000 (23:34 +0000)
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

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/lib/libstdc++-v3-dg.exp

index 7157fc1..cc52be3 100644 (file)
@@ -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.
index d63301c..bf1a806 100644 (file)
@@ -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;