Skip to content

Commit d207673

Browse files
committed
Update run-all.sh
1 parent faf3529 commit d207673

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

run-all.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,29 @@ make
66
echo
77
echo "Running core test262..."
88
make test262-clean
9-
make -k test262-core >test262.out
9+
make -k test262-core >test262.out 2>&1
1010
echo "The result was saved at: test262.out"
1111

1212
echo
1313
echo "Running core test262 with measuring semantic coverage..."
1414
( cd test262-coverage
1515
make test262-clean
16-
make -k test262-core-coverage
17-
./coverage.sh >test262-coverage.out
16+
make -k test262-core-coverage >test262-coverage.log 2>&1
17+
./coverage.sh >test262-coverage.out 2>&1
1818
)
1919
echo "The result was saved at: test262-coverage/test262-coverage.out"
2020

2121
echo
2222
echo "Detecting security attack..."
2323
( cd security-attack
2424
make clean
25-
make >security-attack.out
25+
make >security-attack.out 2>&1
2626
)
2727
echo "The result was saved at: security-attack/security-attack.out"
2828

2929
echo
3030
echo "Verifying example programs..."
3131
( cd verification
32-
make >verification.out
32+
make >verification.out 2>&1
3333
)
3434
echo "The result was saved at: verification/verification.out"

0 commit comments

Comments
 (0)