This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: Leftover real25647.x and static25647.x in testsuite/gfortran directory?
- From: "Uros Bizjak" <ubizjak at gmail dot com>
- To: "Fortran List" <fortran at gcc dot gnu dot org>
- Cc: "Brooks Moses" <brooks dot moses at codesourcery dot com>
- Date: Mon, 26 Mar 2007 12:18:54 +0200
- Subject: Re: Leftover real25647.x and static25647.x in testsuite/gfortran directory?
- 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=a5L5+Zi38fcuhL523sQaveTyDkWI+fIPRAVieTc+JVcxjYLwfEyNzmaEB60ZgGf+sWTI+7bqbmszPyOcq67Sg1xp9qRRtnoUZ2l3603By0G7PrxOxbuBP2LrSbh5eGIQwGlL9Qa9gzGXjJ3L5H9ln1QYNxXUZl869hlw8qnQwNw=
- 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=c9BrhW831vP1wZQmzdt2eq/lRUx9NJfmelOr1QnlG8mBoDYoVkFKtMaflwgWWhukYoQPOtnchYL28oJ554ogmk8bNbNOMFI0JiQ1cwksyXTil2zZGuY4xQpeUIAim9qcfcqQv3XdaVUDFo0Gdw8B24X+T4d2GFETgm+eyQk/EDg=
Hello!
After one runs the testsuite, there are a couple of leftover .x files in the
testsuite/gfortran directory: real25647.x and static25647.x. Does anyone have any
idea what's creating those?
Judging by the timestamps, they're created by different programs, roughly 1/3 and
2/3rds of the way through the testsuite, respectively.
These are leftover executables of feature tests from
gcc/testsuite/lib/target-supports.exp. These two particular files are
from
proc check_effective_target_static_libgfortran { }
and
proc check_effective_target_fortran_large_real { }
Somewhere a directive to clean executable should be added:
remote_file build delete $exe
Please note that some other fortran checks (such as proc
check_effective_target_fortran_large_int { }) also fail to clean their
executables.
Uros.