X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Frun-tests.lisp;h=b67497e9d2f4918b3350bb3773ebe2adb806af0d;hb=179de85ab4fdff049c72ddb2767b93d838494b09;hp=dcf2f2c9d2c6c8fb652a1cd4716d224d798c9b0c;hpb=a51749228e41a0fd65024a0e15f38dba986a3ab7;p=sbcl.git diff --git a/tests/run-tests.lisp b/tests/run-tests.lisp index dcf2f2c..b67497e 100644 --- a/tests/run-tests.lisp +++ b/tests/run-tests.lisp @@ -1,10 +1,9 @@ #+#.(cl:if (cl:find-package "ASDF") '(or) '(and)) -(load (merge-pathnames "../contrib/asdf/asdf.fasl")) +(require :asdf) #+#.(cl:if (cl:find-package "SB-POSIX") '(or) '(and)) -(let ((asdf:*central-registry* - (cons "../contrib/systems/" asdf:*central-registry*))) - (asdf:oos 'asdf:load-op 'sb-posix)) +(handler-bind (#+win32 (warning #'muffle-warning)) + (require :sb-posix)) (load "test-util.lisp") @@ -69,6 +68,7 @@ (ecase (first fail) (:expected-failure "Expected failure:") (:unexpected-failure "Failure:") + (:leftover-thread "Leftover thread (broken):") (:unexpected-success "Unexpected success:") (:skipped-broken "Skipped (broken):") (:skipped-disabled "Skipped (irrelevant):"))