Skip to content

Commit 6ecdf07

Browse files
committed
Update runall.sh
1 parent 442b5f4 commit 6ecdf07

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

runall.sh

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@ declare -A mainjar
77
mainjar[convex]=convex-core-0.7.1-jar-with-dependencies.jar
88
mainjar[jflex]=jflex-1.8.2-jar-with-dependencies.jar
99
mainjar[mph-table]=mph-table-1.0.6-SNAPSHOT-jar-with-dependencies.jar
10+
mainjar[JQF]=jqf-fuzz-1.9-jar-with-dependencies.jar
11+
mainjar[rpki-commons]=rpki-commons-DEV.jar
12+
1013

1114
declare -A testjar
1215
testjar[convex]=convex-core-0.7.1-tests.jar
1316
testjar[jflex]=jflex-1.8.2-tests.jar
1417
testjar[mph-table]=mph-table-1.0.6-SNAPSHOT-tests.jar
18+
testjar[JQF]=jqf-fuzz-1.9-tests.jar
19+
testjar[rpki-commons]=rpki-commons-DEV-tests.jar
1520

1621

1722
cd $JCG_HOME || exit
@@ -21,7 +26,7 @@ mkdir -p serializedGraphs
2126

2227
for type in original fixed
2328
do
24-
for project in convex jflex mph-table
29+
for project in convex jflex mph-table JQF rpki-commons
2530
do
2631
echo $type for $project
2732

@@ -34,11 +39,11 @@ do
3439

3540
# clean project
3641
rm -rf $projectName
37-
42+
3843
# clean output
3944
rm -rf output
4045
mkdir output
41-
46+
4247
# git project
4348
java -jar ./target/javacg-0.1-SNAPSHOT-jar-with-dependencies.jar git -c $projectName
4449

@@ -51,12 +56,10 @@ do
5156
# copy output
5257
rm -rf output-$projectName
5358
mv output output-$projectName
54-
mkdir output
5559

5660
cd output-$projectName || exit
5761
../buildsvg.sh
5862
cd ..
5963
done
6064
done
6165

62-

0 commit comments

Comments
 (0)