Signal floating-point-overflow from bignum-to-float.
[sbcl.git] / tests / find-tests.sh
blob83dee2841aaa666532e890e387bd04d9ec0af290
1 #!/bin/sh
3 # This software is part of the SBCL system. See the README file for
4 # more information.
6 # While most of SBCL is derived from the CMU CL system, the test
7 # files (like this one) were written from scratch after the fork
8 # from CMU CL.
10 # This software is in the public domain and is provided with
11 # absolutely no warranty. See the COPYING and CREDITS files for
12 # more information.
14 if [ "$1" = "--help" ] || [ -z "$1" ]; then
15 cat <<EOF
16 Find test cases whose names match a given string.
18 Usage: $0 [OPTIONS] STRING
20 Options:
22 --fuzzy Enable substring matching, disregard packages.
24 EOF
25 exit 0
28 . ./subr.sh
30 set +u
31 run_sbcl --script find-tests.lisp $*