mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
15 lines
250 B
Bash
15 lines
250 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# This script updates golden.txt and ignored.txt
|
||
|
#
|
||
|
#
|
||
|
# Note that even if a test is ignored, this script will invoke it.
|
||
|
#
|
||
|
set -eu
|
||
|
|
||
|
|
||
|
# Clean the ignore list
|
||
|
echo '' > tests/ignored.txt
|
||
|
|
||
|
scripts/add-golden.sh
|
||
|
scripts/ignore.sh ''
|