diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2009-02-09 18:07:41 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2009-02-09 10:07:41 -0800 |
commit | 493905ba459ec8a2b779c9fed39d627887ed6787 (patch) | |
tree | ea04e1da215c7a83b85c832aa4ea28d004d1066f /gcc | |
parent | e41e2ab405a00c677a51c61382708b71c6181422 (diff) | |
download | gcc-493905ba459ec8a2b779c9fed39d627887ed6787.zip gcc-493905ba459ec8a2b779c9fed39d627887ed6787.tar.gz gcc-493905ba459ec8a2b779c9fed39d627887ed6787.tar.bz2 |
abi-x86_64.exp: Use glob instead of find.
2009-02-09 H.J. Lu <hongjiu.lu@intel.com>
* gcc.target/x86_64/abi/abi-x86_64.exp: Use glob instead of
find.
From-SVN: r144036
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/x86_64/abi/abi-x86_64.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index cd90ac8..4bf47cc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2009-02-09 H.J. Lu <hongjiu.lu@intel.com> + + * gcc.target/x86_64/abi/abi-x86_64.exp: Use glob instead of + find. + 2009-02-09 Eric Botcazou <ebotcazou@adacore.com> * gcc.c-torture/compile/20090209-1.c: New test. diff --git a/gcc/testsuite/gcc.target/x86_64/abi/abi-x86_64.exp b/gcc/testsuite/gcc.target/x86_64/abi/abi-x86_64.exp index 61dc3e4..97a33e5 100644 --- a/gcc/testsuite/gcc.target/x86_64/abi/abi-x86_64.exp +++ b/gcc/testsuite/gcc.target/x86_64/abi/abi-x86_64.exp @@ -31,7 +31,7 @@ torture-init set-torture-options $C_TORTURE_OPTIONS set additional_flags "-W -Wall" -foreach src [lsort [find $srcdir/$subdir test_*.c]] { +foreach src [lsort [glob -nocomplain $srcdir/$subdir/test_*.c]] { if {[runtest_file_p $runtests $src]} { if { ([istarget *-*-darwin*]) } then { c-torture-execute [list $src \ |