mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
4bfd35c13e
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
19 lines
391 B
Bash
Executable file
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
|