summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2008-11-03 13:10:42 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2008-11-03 14:24:39 +0000
commitb3462c5616ae24fd391ad0872d2fbb98c6cd0c92 (patch)
tree167e37226e77f2921155a962dd1ac4320a27e1b0 /test
parent34586860ef08e6aab988ba227997dfe376f9d319 (diff)
[test] Convert a few residual '-out.*'
Catch a few -out.* hiding in boilerplate.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 02debdf4..948716a0 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1225,12 +1225,12 @@ CLEANFILES += \
# reality of portability was raised and it became....
clean-local: clean-caches
rm -rf output
- -${FIND} . -name '*-out.*' -print | ${XARGS} ${RM}
+ -${FIND} . -name '*.out.*' -print | ${XARGS} ${RM}
-${FIND} . -name '*.log' -print | ${XARGS} ${RM}
-${FIND} . -name '*.[is]' -print | ${XARGS} ${RM}
clean-caches:
- -${FIND} . -name '*-pass.*' -print | ${XARGS} ${RM}
- -${FIND} . -name '*-fail.*' -print | ${XARGS} ${RM}
+ -${FIND} . -name '*.pass.*' -print | ${XARGS} ${RM}
+ -${FIND} . -name '*.fail.*' -print | ${XARGS} ${RM}
# The following definitions both should work.
#FAILED_TESTS = `grep -l '\<FAIL\>' $(test_sources:.c=.log) 2>/dev/null | sed -e 's/[.]log$$//' | xargs echo`