summaryrefslogtreecommitdiff
blob: 271795e428ca097b56a3fa04cb329f6bd6ab5bd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
diff -ur sbcl-0.9.14.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd sbcl-0.9.14/contrib/sb-bsd-sockets/sb-bsd-sockets.asd
--- sbcl-0.9.14.orig/contrib/sb-bsd-sockets/sb-bsd-sockets.asd	2006-06-09 09:11:29.000000000 -0500
+++ sbcl-0.9.14/contrib/sb-bsd-sockets/sb-bsd-sockets.asd	2006-07-09 11:42:19.000000000 -0500
@@ -42,19 +42,3 @@
 
 (defmethod perform :after ((o load-op) (c (eql (find-system :sb-bsd-sockets))))
   (provide 'sb-bsd-sockets))
-
-#-win32
-(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets))))
-  (operate 'load-op 'sb-bsd-sockets-tests)
-  (operate 'test-op 'sb-bsd-sockets-tests))
-
-#-win32
-(defsystem sb-bsd-sockets-tests
-  :depends-on (sb-rt sb-bsd-sockets #-win32 sb-posix)
-  :components ((:file "tests")))
-
-#-win32
-(defmethod perform ((o test-op) (c (eql (find-system :sb-bsd-sockets-tests))))
-  (or (funcall (intern "DO-TESTS" (find-package "SB-RT")))
-      (error "test-op failed")))
-
Only in sbcl-0.9.14/contrib/sb-bsd-sockets: sb-bsd-sockets.asd.~1.25.~
diff -ur sbcl-0.9.14.orig/contrib/sb-posix/sb-posix.asd sbcl-0.9.14/contrib/sb-posix/sb-posix.asd
--- sbcl-0.9.14.orig/contrib/sb-posix/sb-posix.asd	2006-03-07 06:04:27.000000000 -0600
+++ sbcl-0.9.14/contrib/sb-posix/sb-posix.asd	2006-07-09 11:43:16.000000000 -0500
@@ -22,27 +22,3 @@
 
 (defmethod perform :after ((o load-op) (c (eql (find-system :sb-posix))))
   (provide 'sb-posix))
-
-(defmethod perform ((o test-op) (c (eql (find-system :sb-posix))))
-  (operate 'load-op 'sb-posix-tests)
-  (operate 'test-op 'sb-posix-tests))
-
-(defmethod perform ((o test-op) (c (eql (find-system :sb-posix-tests))))
-  (funcall (intern "DO-TESTS" (find-package "SB-RT")))
-  (let ((failures (funcall (intern "PENDING-TESTS" "SB-RT")))
-	(ignored-failures (loop for sym being the symbols of :sb-posix-tests
-			        if (search ".ERROR" (symbol-name sym))
-			        collect sym)))
-    (cond
-      ((null failures)
-       t)	     
-      ((null (set-difference failures ignored-failures))
-       (warn "~@<some POSIX implementations return incorrect error values for ~
-              failing calls, but there is legitimate variation between ~
-              implementations too.  If you think the errno ~
-              from your platform is valid, please contact the sbcl ~
-              developers; otherwise, please submit a bug report to your ~
-              kernel distributor~@:>")
-       t)
-      (t
-       (error "non-errno tests failed!")))))
Only in sbcl-0.9.14/contrib/sb-posix: sb-posix.asd.~1.13.~