Skip to content

Commit 660df9c

Browse files
Simplify the scripts
1 parent a5002bc commit 660df9c

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

auto-run-nondex/README.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# runNondex
2+
13

24
What repo we want to run Nondex on?
35

@@ -6,13 +8,6 @@ What repo we want to run Nondex on?
68

79

810

9-
10-
# runNondexAll
11-
12-
This is simplified script for quick start
13-
Go to folder of .pom.xml files, and check all the result in result.log
14-
15-
1611
# Dependencies
1712

1813
It is recommended to use a virtual python environment for the required modules:
@@ -27,8 +22,12 @@ Make sure to first install packages in `requirements.txt`.
2722
cd auto-run-nondex
2823
pip install -r requirements.txt
2924
```
25+
# runNondexAll
26+
27+
This is simplified script for quick start
28+
Go to folder of .pom.xml files, and check all the result in result.log
3029

31-
# runNondex in each module:
30+
# runNondex module:
3231
```bash
3332
./runNondex.sh <project_folder_path> <optional-directory-name>
3433
```

auto-run-nondex/runNondexAll.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Assume this script is run from the folder of .pom.xml files
2+
3+
mvn edu.illinois:nondex-maven-plugin:2.1.1-SNAPSHOT:nondex -Dlicense.skip=true -Drat.skip=true -fae | tee ./result.log
4+
5+
awk '/\[INFO\] Across all seeds:/{flag=1; next} /\[INFO\] Test results can be found at:/{flag=0} flag' "./result.log"

0 commit comments

Comments
 (0)