aboutsummaryrefslogtreecommitdiffstats
path: root/testing/sbcl/config
diff options
context:
space:
mode:
Diffstat (limited to 'testing/sbcl/config')
-rw-r--r--testing/sbcl/config8
1 files changed, 8 insertions, 0 deletions
diff --git a/testing/sbcl/config b/testing/sbcl/config
new file mode 100644
index 0000000000..e312bb72d2
--- /dev/null
+++ b/testing/sbcl/config
@@ -0,0 +1,8 @@
+(lambda (list)
+ (flet ((enable (x) (pushnew x list))
+ (disable (x) (setf list (remove x list))))
+ (disable :sb-thread)
+ (disable :sb-test)
+ (enable :sb-unicode)
+ (enable :sb-core-compression))
+ list)