mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
59 lines
1.5 KiB
Bash
Executable File
59 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This script updates passing.txt and TODO.txt
|
|
#
|
|
#
|
|
# Note that even if a test is ignored, this script will invoke it.
|
|
#
|
|
set -eu
|
|
|
|
function sortFile() {
|
|
cat $1 | awk NF | sort | uniq | awk '{$1=$1};1' | uniq | sort > tests/sorted.txt
|
|
mv tests/sorted.txt $1
|
|
}
|
|
|
|
# Clean the ignore list
|
|
echo '' > tests/TODO.txt
|
|
echo '' > tests/passing.txt
|
|
mv tests/postponed.txt tests/postponed.tmp.txt
|
|
echo '' > tests/postponed.txt
|
|
|
|
export SWC_RUN=0
|
|
export SWC_CHECK=0
|
|
|
|
# Update passing.txt
|
|
cargo test --features concurrent --test compress fixture_tests__terser__compress__ \
|
|
| grep 'fixture_tests__terser__compress__' \
|
|
| grep 'js .\.\. ok$' \
|
|
| sed -e 's!test fixture_tests__terser__compress__!!' \
|
|
| sed -e 's! ... ok!!' \
|
|
| sed -e 's!__!/!g' \
|
|
| sed -e 's!_js!.js!' \
|
|
>> tests/passing.txt
|
|
|
|
sortFile tests/passing.txt
|
|
|
|
# Don't mark passing tests as postponed
|
|
comm -23 tests/postponed.tmp.txt tests/passing.txt > tests/nodup.txt
|
|
mv tests/nodup.txt tests/postponed.txt
|
|
rm tests/postponed.tmp.txt
|
|
|
|
sortFile tests/postponed.txt
|
|
|
|
# Update TODO.txt
|
|
cargo test --features concurrent --test compress 'fixture_tests__terser__compress__' \
|
|
| grep 'fixture_tests__terser__compress__' \
|
|
| grep 'js .\.\. FAILED$' \
|
|
| sed -e 's!test fixture_tests__terser__compress__!!' \
|
|
| sed -e 's! ... FAILED!!' \
|
|
| sed -e 's!__!/!g' \
|
|
| sed -e 's!_js!.js!' \
|
|
>> tests/TODO.txt
|
|
|
|
sortFile tests/TODO.txt
|
|
|
|
# Don't mark postponed test as todo
|
|
comm -23 tests/TODO.txt tests/postponed.txt > tests/nodup.txt
|
|
mv tests/nodup.txt tests/TODO.txt
|
|
|