File tree Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 11name : Run make under CI
22
3- on :
4- - push
5- - pull_request
3+ on : [push, pull_request]
64
75jobs :
86 build :
2018 sudo pip install mypy
2119 - name : Install shellcheck and checkbashisms
2220 run : sudo apt install shfmt shellcheck devscripts
21+ - name : Install markdownlint
22+ run : npm install markdownlint-cli2 --global
2323 - name : style check
2424 run : make style-check
Original file line number Diff line number Diff line change @@ -48,6 +48,13 @@ ifneq ($(SH_SCRIPTS),)
4848 @${CHECKBASHISMS} -l ${SH_SCRIPTS}
4949endif
5050
51+ style-fix : markdownlint-fix
52+ markdownlint-fix :
53+ markdownlint-cli2 --fix .
54+ style-check : markdownlint-check
55+ markdownlint-check :
56+ markdownlint-cli2 .
57+
5158showvars :
5259 @echo " PYTHON_FILES=${PYTHON_FILES} "
5360 @echo " PYTHON_FILES_TO_CHECK=${PYTHON_FILES_TO_CHECK} "
Original file line number Diff line number Diff line change @@ -12,18 +12,23 @@ Testing](GRT_Program-Analysis-Guided_Random_Testing.pdf)"
1212## Usage Instructions
1313
1414### Setup
15+
1516To set up the environment, refer to the ` scripts/mutation-prerequisites.md ` file.
1617
1718### Running Scripts
19+
1820For prerequisities, refer to ` scripts/mutation-prerequisities.md ` .
19- For instructions on using the scripts, refer to ` scripts/mutation-randoop.sh ` for Randoop and ` scripts/mutation-evosuite.sh ` for EvoSuite.
21+ For instructions on using the scripts, refer to ` scripts/mutation-randoop.sh `
22+ for Randoop and ` scripts/mutation-evosuite.sh ` for EvoSuite.
2023
2124### Running GRT Experiments
25+
2226See file ` scripts/experiment-scripts/README.md ` .
2327
2428### Subject Programs
2529
26- The compiled subject programs used by the GRT paper appear in the ` subject-programs/ ` directory.
30+ The compiled subject programs used by the GRT paper appear in the
31+ ` subject-programs/ ` directory.
2732
2833To obtain the sources of the subject programs, see
2934` subject-programs/README.build ` .
You can’t perform that action at this time.
0 commit comments