forked from kframework/javascript-semantics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun-all.sh
More file actions
executable file
·34 lines (29 loc) · 803 Bytes
/
run-all.sh
File metadata and controls
executable file
·34 lines (29 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
echo "Installing KJS..."
make
echo
echo "Running core test262..."
make test262-clean
make -k test262-core >test262.out 2>&1
echo "The result was saved at: test262.out"
echo
echo "Running core test262 with measuring semantic coverage..."
( cd test262-coverage
make test262-clean
make -k test262-core-coverage >test262-coverage.log 2>&1
./coverage.sh >test262-coverage.out 2>&1
)
echo "The result was saved at: test262-coverage/test262-coverage.out"
echo
echo "Detecting security attack..."
( cd security-attack
make clean
make >security-attack.out 2>&1
)
echo "The result was saved at: security-attack/security-attack.out"
echo
echo "Verifying example programs..."
( cd verification
make >verification.out 2>&1
)
echo "The result was saved at: verification/verification.out"