diff --git a/test/test-multiple.script b/test/test-multiple.script index a94fa3f72a4e162e772bc0671b85f7f12c094da5..ed62f54a6184cca0e04a35efe81e7cf6a0ed9430 100644 --- a/test/test-multiple.script +++ b/test/test-multiple.script @@ -5,11 +5,15 @@ (defparameter asd2 (subpathname tmp "test-multiple-too.asd")) (defparameter file4 (test-fasl "file4")) (setf *central-registry* `(,*test-directory* ,tmp)) -(run-program - (format nil "ln -sf ~A ~A" - (native-namestring asd) - (native-namestring asd2))) -(oos 'load-source-op 'test-multiple-too) -(assert (asymval :*file3* :test-package)) + +;; Don't rely on ln -s on Windows +(unless (os-windows-p) + (run-program + (format nil "ln -sf ~A ~A" + (native-namestring asd) + (native-namestring asd2))) + (oos 'load-source-op 'test-multiple-too) + (assert (asymval :*file3* :test-package))) + (load-system 'test-multiple-free) (assert (probe-file* file4))