mariadb/storage/maria/ma_test_all.sh
unknown 4bfd35c13e New version of ma_test_all
storage/maria/ma_test_all.sh:
  Added possibility to call ma_test_all-t directly with the old script.
  If any options were passed (such as --verbose) the script will
  be called directly.
storage/maria/unittest/ma_test_all-t:
  Added new options --number-of-tests and --run-tests=...
  
  More verbose output
2008-01-08 22:21:28 +02:00

19 lines
391 B
Bash
Executable file

#!/bin/sh
#
# This file is now deprecated and has been replaced by
# unittest/ma_test_all-t
#
#
#
#
if test -n "$1"; then
# unit.pl can't pass options to ma_test_all-t, so if anything
# was passed as an argument, assume the purpose was to pass
# them to ma_test_all-t and call it directly
unittest/ma_test_all-t $@
else
perl ../../unittest/unit.pl run unittest/ma_test_all-t
fi