mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 09:52:57 +03:00
8a01e2b7b6
swc_ecma_transforms: - Add tests for #898 - dce preserves `export * from 'foo';` swc_bundler: - Fix some concurrency bugs - Run dce only once - Handle `export * from 'foo'` - Handle namespace imports with computed key - Add some unit tests for `plan` - Handle export default decl - Handle simple coomon dependencies properly
20 lines
870 B
Bash
Executable File
20 lines
870 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
export RUST_MIN_STACK=16777216
|
|
export CARGO_INCREMENTAL=0
|
|
export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests"
|
|
export RUSTDOCFLAGS="-Cpanic=abort"
|
|
export CARGO_TARGET_DIR=".COVERAGE_DIR"
|
|
|
|
git clone https://github.com/swc-project/ts-parser-test-ref.git ecmascript/parser/tests/typescript/tsc || true
|
|
(cd ecmascript/parser/tests/typescript/tsc && git pull)
|
|
|
|
cargo test --all --all-features --exclude node-swc --exclude wasm
|
|
|
|
zip -0 ccov.zip `find $CARGO_TARGET_DIR \( -name "swc*.gc*" -o -name 'spack*.gc*' -o -name 'ast_node*.gc*' -o -name 'enum_kind*.gc*' -o -name 'string-enum*.gc*' -o -name 'from_variant*.gc*' \) -print`;
|
|
|
|
grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore "/*" -o lcov.info;
|
|
|
|
bash <(curl -s https://codecov.io/bash) -f lcov.info
|