]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gcc-dg.exp (remove-build-file): Remove files on remote host as well as on build.
authorJoseph Myers <joseph@codesourcery.com>
Sat, 5 Jul 2008 09:47:22 +0000 (10:47 +0100)
committerJoseph Myers <jsm28@gcc.gnu.org>
Sat, 5 Jul 2008 09:47:22 +0000 (10:47 +0100)
* lib/gcc-dg.exp (remove-build-file): Remove files on remote host
as well as on build.

From-SVN: r137503

gcc/testsuite/ChangeLog
gcc/testsuite/lib/gcc-dg.exp

index 0ff00d4f687464bf21e5f35991a7ac32641550db..2cf3a6282d3a55bf43b3beaaffebb0759dc362a2 100644 (file)
@@ -1,3 +1,8 @@
+2008-07-05  Joseph Myers  <joseph@codesourcery.com>
+
+       * lib/gcc-dg.exp (remove-build-file): Remove files on remote host
+       as well as on build.
+
 2008-07-04  Richard Guenther  <rguenther@suse.de>
 
        * gcc.dg/tree-ssa/pta-callused.c: New testcase.
index 9a3f12b5131e18b7114d4262edfeba9dc83d0f42..8d308d4246155df8bd7ce7cac355b89f08dd266f 100644 (file)
@@ -354,6 +354,11 @@ proc remove-build-file { pat } {
     set file_list "[glob -nocomplain $pat]"
     verbose "remove-build-file `$file_list'" 2
     foreach output_file $file_list {
+       if [is_remote host] {
+           # Ensure the host knows the file is gone by deleting there
+           # first.
+           remote_file host delete $output_file
+       }
        remote_file build delete $output_file
     }
 }