Execute cliargs script before running tests
This commit is contained in:
parent
ec50e5272b
commit
e6230a3644
6 changed files with 23 additions and 13 deletions
12
scripts/checkcliargs.sh
Executable file
12
scripts/checkcliargs.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
main="org.pitest.mutationtest.commandline.MutationCoverageReport"
|
||||
new=/tmp/checkcliargs-new
|
||||
old=/tmp/checkcliargs-old
|
||||
|
||||
java -cp "lib/test/*" $main --help >$new
|
||||
java -cp "examples/lib/test/*" $main --help >$old
|
||||
|
||||
diff $old $new
|
||||
|
||||
rm -rf $new $old
|
Loading…
Add table
Add a link
Reference in a new issue