2021-05-20 07:51:30 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# This script exists to prevent regression.
|
|
|
|
#
|
|
|
|
# This script invoked tests two time.
|
|
|
|
# For first, it runs tests in no-regression mode.
|
|
|
|
# In the mode, only tests listed in tests/golden.txt will be tested.
|
|
|
|
#
|
|
|
|
# For second invokation, arguments are passed to cargo test so the user can
|
|
|
|
# filter tests.
|
|
|
|
#
|
|
|
|
set -eu
|
|
|
|
|
2021-05-23 05:19:11 +03:00
|
|
|
export RUST_LOG=swc_ecma_minifier=trace
|
|
|
|
|
2021-05-20 07:51:30 +03:00
|
|
|
if [ -z "$@" ]; then
|
|
|
|
./scripts/sort.sh
|
|
|
|
|
2021-05-21 09:57:17 +03:00
|
|
|
GOLDEN_ONLY=1 cargo test --test compress --all-features
|
2021-05-20 07:51:30 +03:00
|
|
|
fi
|
|
|
|
|
2021-05-21 09:57:17 +03:00
|
|
|
cargo test --test compress --all-features $@
|