Add missing cleanup in pch-init
authorTom de Vries <tom@codesourcery.com>
Thu, 26 Feb 2015 14:15:29 +0000 (14:15 +0000)
committerTom de Vries <vries@gcc.gnu.org>
Thu, 26 Feb 2015 14:15:29 +0000 (14:15 +0000)
2015-02-26  Tom de Vries  <tom@codesourcery.com>

* lib/dg-pch.exp (pch-init): Add missing cleanup of pchtest<n>.o.

From-SVN: r221009

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

index 40e000ff9ff1e7dea5ebabc0e73e3b01c82fbe46..b95443fcd5b47bd736bc6a4b57f3baf4e4ee98bd 100644 (file)
@@ -1,3 +1,7 @@
+2015-02-26  Tom de Vries  <tom@codesourcery.com>
+
+       * lib/dg-pch.exp (pch-init): Add missing cleanup of pchtest<n>.o.
+
 2015-02-26  Tom de Vries  <tom@codesourcery.com>
 
        * gcc.misc-tests/godump-1.c: Add missing cleanup of godump-1.out.
index e25030140dbd8aea7039fc24e6e6d01d0a52e035..9b4f40bf3346b0b5c342be3e3d5991ca560b26fa 100644 (file)
@@ -30,15 +30,17 @@ proc pch-init { args } {
     set pch_unsupported_debug \
        [regexp "debug format cannot be used with pre-compiled headers" \
                [lindex $result 0]]
+    remote_file build delete [lindex $result 1]
 
     set pch_unsupported 0
     if { $pch_unsupported_debug } {
        verbose -log "pch is unsupported with the debug info format"
 
        set result [check_compile pchtest object "int i;" "-x c-header"]
-           set pch_unsupported \
-               [regexp "debug format cannot be used with pre-compiled headers" \
-                       [lindex $result 0]]
+       set pch_unsupported \
+           [regexp "debug format cannot be used with pre-compiled headers" \
+                [lindex $result 0]]
+       remote_file build delete [lindex $result 1]
     }
 }