From c249a2ecc94ac6a1a352a531fc0f1e103cda4b09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kochma=C5=84ski?= Date: Sat, 14 May 2016 16:01:03 +0200 Subject: [PATCH] move messages.gz to the misc directory --- cl-bench.lisp | 8 +++++--- files/deflate.lisp | 2 +- {files => misc}/message.gz | Bin 3 files changed, 6 insertions(+), 4 deletions(-) rename {files => misc}/message.gz (100%) diff --git a/cl-bench.lisp b/cl-bench.lisp index 7f37fa6..35ccc6d 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 0644529..e553037 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 -- GitLab