This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
[PATCH, testsuite]: Committed: Delete executables created by fortran feature tests
- From: "Uros Bizjak" <ubizjak at gmail dot com>
- To: "GCC Patches" <gcc-patches at gcc dot gnu dot org>
- Cc: "Fortran List" <fortran at gcc dot gnu dot org>, "Brooks Moses" <brooks dot moses at codesourcery dot com>
- Date: Tue, 27 Mar 2007 09:00:26 +0200
- Subject: [PATCH, testsuite]: Committed: Delete executables created by fortran feature tests
- Dkim-signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=jcy6Ow6MsgPnr6TSfOola5THRgZq2DxB+2CjhbywkC2bPNVqdg9NXLcVamyJPmOhK95leZY/o8vnrN7qjm3c7DsHXrKieoE7r42DJdYfBGHTUDn8d9psC7a54RB2uEW5kwKkaSeIOkb3iFMkq9Nvui5p7QZVmn8ySFSPzLQAe5o=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=abrlFNqIld02QR8IFNlm5bUkV1pnb4dV3rTjQ2J4FJN9+FB2eAWDzd3lZY/d5Grbp8iPAIC69OkYEgvwXuC20InEIADtcJr82GNvyS71Bf6j7PFLBmFqokGFwPC4lD8CPmvy6rAf/Vs9NuKv7bxjJG/ePjj35FWZ6taO/psOrlI=
Hello!
This patch deletes executables created by fortran feature tests in
libtarget-supports.exp. Patch was tested on i686-pc-linux-gnu by
running gfortran testsuite. Patch is commited to SVN mainline.
2007-03-27 Uros Bizjak <ubizjak@gmail.com>
* lib/target-supports.exp (check_effective_target_fortran_large_real):
Delete created executable test file.
(check_effective_target_fortran_large_int): Ditto.
(check_effective_target_static_libgfortran): Ditto.
Uros.
Index: lib/target-supports.exp
===================================================================
--- lib/target-supports.exp (revision 123254)
+++ lib/target-supports.exp (working copy)
@@ -649,6 +649,7 @@
if [string match "" $lines] then {
# No error message, compilation succeeded.
+ remote_file build delete $exe
set et_fortran_large_real_saved 1
}
}
@@ -705,6 +706,7 @@
if [string match "" $lines] then {
# No error message, compilation succeeded.
+ remote_file build delete $exe
set et_fortran_large_int_saved 1
}
}
@@ -759,6 +761,7 @@
if [string match "" $lines] then {
# No error message, compilation succeeded.
+ remote_file build delete $exe
set et_static_libgfortran_saved 1
}
}