mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
33a43f85b1
swc_ecma_minifier: - Implement more rules. swc_ecma_transforms_base: - `resolver`: Fix syntax context of catch block. swc_ecma_transforms_optimization: - `expr_simplifier`: Fix a bug related to `this` of call expressions. - `dead_branch_remover`: Don't reduce switch cases if test is now known. - `dead_branch_remover`: Don't break `&&`.
28 lines
704 B
Bash
Executable File
28 lines
704 B
Bash
Executable File
#!/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
|
|
|
|
export RUST_LOG=swc_ecma_minifier=trace
|
|
|
|
# To prevent regression, we run base test before real tests.
|
|
touch tests/compress.rs
|
|
UPDATE=1 ./scripts/base.sh base_fixture
|
|
./scripts/base.sh base_exec
|
|
|
|
if [ -z "$@" ]; then
|
|
./scripts/sort.sh
|
|
|
|
SWC_RUN=0 GOLDEN_ONLY=1 cargo test --test compress --all-features
|
|
fi
|
|
|
|
SKIP_GOLDEN=1 cargo test --test compress --all-features $@
|