diff --git a/cl-bench.lisp b/cl-bench.lisp index 7f37fa624f12d99f1adad2f85b6bf15d9b9fd375..35ccc6df2e27b82db131ad489993493445faa157 100644 --- a/cl-bench.lisp +++ b/cl-bench.lisp @@ -11,9 +11,11 @@ (let ((root-dir (asdf:system-source-directory '#:cl-bench))) (setf (logical-pathname-translations "bench") - `(("root;*.*" ,root-dir) - ("test;*.*" ,(merge-pathnames "files/" root-dir)) - ("result;*.*" ,(merge-pathnames "output/" root-dir))))) + `(("root;*.*.*" ,root-dir) + ("test;*.*.*" ,(merge-pathnames "files/" root-dir)) + ("misc;*.*.*" ,(merge-pathnames "misc/" root-dir)) + ("result;*.*.*" ,(merge-pathnames "output/" root-dir)) + ("**;*.*.*" ,(merge-pathnames "**/" root-dir))))) ;;; This is disabled after the consultation with the ABCL maintainer diff --git a/files/deflate.lisp b/files/deflate.lisp index 06445292135352082a2b81c19a6a84ba6b3753e0..e553037e233547e687492bac750d72f63377afa0 100644 --- a/files/deflate.lisp +++ b/files/deflate.lisp @@ -292,7 +292,7 @@ (defun run-deflate-file () - (test-deflate-file "bench:test;message.gz")) + (test-deflate-file "bench:misc;message.gz")) ;; EOF diff --git a/files/message.gz b/misc/message.gz similarity index 100% rename from files/message.gz rename to misc/message.gz