Skip to content

Commit 9b122ef

Browse files
committed
more pedantic clean.sh
Patch by Jim Wise, lp#666884. Takes care of the few cases of temporary files which are currently left behind after running clean.sh. While there, it normalizes the name used for scratch files used in contrib testing, and updates .cvsignore to match. This is obviously pedantry, but it's nice to have a clean tree at the end of clean.sh.
1 parent eb3a715 commit 9b122ef

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

clean.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ find . \( \
105105
-name '*.o' -o \
106106
-name '*.so' -o \
107107
-name '*.d' -o \
108+
-name 'foo.c' -o \
109+
-name 'test-output' -o \
110+
-name 'test-lab' -o \
111+
-name 'encodings.texi-temp' -o \
112+
-name 'stack-alignment-offset' -o \
113+
-name 'test-status.lisp-expr' -o \
108114
-name 'a.out' -o \
109115
-name 'sbcl' -o \
110116
-name 'sbcl.h' -o \
@@ -113,4 +119,4 @@ find . \( \
113119
-name 'tags' -o \
114120
-name 'test-passed' -o \
115121
-name 'ldso-stubs.S' -o \
116-
-name 'local-target-features.lisp-expr' \) -print | xargs rm -f
122+
-name 'local-target-features.lisp-expr' \) -print | xargs rm -fr

contrib/sb-posix/.cvsignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
a.out
22
*.lisp-temp
33
foo.c
4-
test-lab
4+
test-output
55
test-passed

contrib/sb-posix/posix-tests.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
(defvar *test-directory*
77
(ensure-directories-exist
8-
(merge-pathnames (make-pathname :directory '(:relative "test-lab"))
8+
(merge-pathnames (make-pathname :directory '(:relative "test-output"))
99
(make-pathname :directory
1010
(pathname-directory *load-truename*)))))
1111

version.lisp-expr

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
;;; checkins which aren't released. (And occasionally for internal
2121
;;; versions, especially for internal versions off the main CVS
2222
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
23-
"1.0.45.22"
23+
"1.0.45.23"

0 commit comments

Comments
 (0)