mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 06:42:42 +00:00
17 lines
544 B
Bash
Executable file
17 lines
544 B
Bash
Executable file
#!/bin/bash
|
|
# spell-checker:ignore (env/vars) BUILDDIR GNULIB SUBDIRS
|
|
cd "$(dirname -- "$(readlink -fm -- "$0")")/../.."
|
|
set -e
|
|
BUILDDIR="${PWD}/uutils/target/release"
|
|
GNULIB_DIR="${PWD}/gnulib"
|
|
pushd gnu
|
|
|
|
export RUST_BACKTRACE=1
|
|
|
|
if test -n "$1"; then
|
|
# if set, run only the test passed
|
|
export RUN_TEST="TESTS=$1"
|
|
fi
|
|
|
|
#shellcheck disable=SC2086
|
|
timeout -sKILL 2h make -j "$(nproc)" check $RUN_TEST SUBDIRS=. RUN_EXPENSIVE_TESTS=yes RUN_VERY_EXPENSIVE_TESTS=yes VERBOSE=no || : # Kill after 4 hours in case something gets stuck in make
|