From ba4b048a931c8a684c8a49bf27344e2062e9a1ae Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau Date: Thu, 12 Jan 2017 08:56:29 -0500 Subject: [PATCH] Fix test-run-program-unix to chdir to test/ Thus it will run when invoked from asdf-tools and/or the SLIME REPL, independently from the current directory at the time of invoking it. --- test/test-run-program-unix.script | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test-run-program-unix.script b/test/test-run-program-unix.script index e375ecfd..15114142 100644 --- a/test/test-run-program-unix.script +++ b/test/test-run-program-unix.script @@ -1,6 +1,8 @@ (unless (os-unix-p) (leave-test "This test can only be run on UNIX" 0)) +(chdir *test-directory*) + #+abcl (unless (version-satisfies (second (split-string (implementation-identifier) :separator '(#\-))) -- GitLab