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 57 58 59 60 61 62 63
|
#!/bin/sh
# tests for problems in the interface presented to the user/programmer
# This software is part of the SBCL system. See the README file for
# more information.
#
# While most of SBCL is derived from the CMU CL system, the test
# files (like this one) were written from scratch after the fork
# from CMU CL.
#
# This software is in the public domain and is provided with
# absolutely no warranty. See the COPYING and CREDITS files for
# more information.
. ./subr.sh
use_test_subdirectory
tmpscript=$TEST_FILESTEM.lisp-script
# Since we execute shell scripts with "set -u" by default
# (as performed in "subr.sh") this would correctly exit with
# an error if SBCL_MACHINE_TYPE were unset.
# test-util.lisp performs the setenv.
# bug 881445
case "$SBCL_MACHINE_TYPE" in
X86-64)
cat > $tmpscript <<EOF
(let ((x (make-array (min (1- array-total-size-limit) (1- (expt 2 32)))
:element-type '(unsigned-byte 8))))
(assert (> (sb-kernel:dynamic-usage) (length x)))
;; prevent compiler from getting too smart...
(eval x)
(sb-ext:exit :code $EXIT_LISP_WIN))
EOF
run_sbcl_with_args --dynamic-space-size 5GB $SBCL_ARGS \
--eval "(setf sb-ext:*evaluator-mode* :${TEST_SBCL_EVALUATOR_MODE:-compile})" \
--load $tmpscript
check_status_maybe_lose "bug 881445" $?
;;
esac
run_sbcl --eval '(sb-ext:exit)'
check_status_maybe_lose "simple exit" $? 0 "ok"
run_sbcl --eval '(sb-ext:exit :code 42)'
check_status_maybe_lose "exit with code" $? 42 "ok"
run_sbcl --eval '(progn (defvar *exit-code* 100) (push (lambda () (exit :code (decf *exit-code*))) *exit-hooks*) #+sb-thread (sb-thread:make-thread (lambda () (exit :code 13))) #-sb-thread (exit :code 13))'
check_status_maybe_lose "exit with code" $? 99 "ok"
run_sbcl --eval '(unwind-protect (sb-ext:exit :code 13 :abort t) (sb-ext:exit :code 7 :abort t))'
check_status_maybe_lose "exit with abort" $? 13 "ok"
run_sbcl --eval '(unwind-protect (sb-ext:exit :code 0 :abort t) (sb-ext:exit :code 7 :abort t))'
check_status_maybe_lose "exit with abort and code 0" $? 0 "ok"
run_sbcl --eval '(unwind-protect (sb-ext:exit :code 0 :abort nil) (sb-ext:exit :code 7))'
check_status_maybe_lose "exit with abort and code 0" $? 7 "ok"
exit $EXIT_TEST_WIN
|