From 8e6a4a018f54dc0babb710d3525c1f2e7f3b6d48 Mon Sep 17 00:00:00 2001 From: Stas Boukarev Date: Fri, 1 Nov 2013 16:47:38 +0400 Subject: [PATCH] Add --help to run-tests.sh. --- tests/run-tests.sh | 35 +++++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/tests/run-tests.sh b/tests/run-tests.sh index 0ea9c85..164bbb4 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -1,19 +1,5 @@ #!/bin/sh -# Run the regression tests in this directory. -# -# Usage: run-tests.sh [OPTIONS] [files] -# -# Valid options are as follows: -# -# --break-on-failure Break into the debugger when a test fails -# unexpectedly -# --break-on-expected-failure Break into the debugger when any test fails -# --report-skipped-tests Include tests :skipped-on target SBCL in -# the test report. -# -# If no test files are specified, runs all tests. - # This software is part of the SBCL system. See the README file for # more information. # @@ -25,6 +11,27 @@ # absolutely no warranty. See the COPYING and CREDITS files for # more information. +if [ $1 = "--help" ]; then + cat <