File tree Expand file tree Collapse file tree 3 files changed +11
-12
lines changed
Expand file tree Collapse file tree 3 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 1- ./approvalTest/cobolcheck -p NUMBERS > ./actual-output.txt
2- ./approvalTest/cobolcheck -p ALPHA >> ./actual-output.txt
3- ./approvalTest/cobolcheck -p GREETING >> ./actual-output.txt
4- ./approvalTest/cobolcheck -p FILECOPY >> ./actual-output.txt
5- ./approvalTest/cobolcheck -p MOCKTEST >> ./actual-output.txt
6- ./approvalTest/cobolcheck -p DPICNUMBERS >> ./actual-output.txt
7-
1+ ./temp/approvalTest/cobolcheck -p NUMBERS > ./actual-output.txt
2+ ./temp/approvalTest/cobolcheck -p ALPHA >> ./actual-output.txt
3+ ./temp/approvalTest/cobolcheck -p GREETING >> ./actual-output.txt
4+ ./temp/approvalTest/cobolcheck -p FILECOPY >> ./actual-output.txt
5+ ./temp/approvalTest/cobolcheck -p MOCKTEST >> ./actual-output.txt
6+ ./temp/approvalTest/cobolcheck -p DPICNUMBERS >> ./actual-output.txt
Original file line number Diff line number Diff line change 1- build /approvalTest/cobolcheck -p NUMBERS ALPHA GREETING FILECOPY MOCKTEST DPICNUMBERS > actual-output.txt
1+ temp /approvalTest/cobolcheck.cmd -p NUMBERS ALPHA GREETING FILECOPY MOCKTEST DPICNUMBERS > actual-output.txt
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ def productName = 'cobol-check'
1111group = ' org.openmainframeproject'
1212description = ' Unit testing framework for Cobol'
1313
14- def approvalExpectedOutput = " build/approvalTest /expected-output.txt"
15- def approvalActualOutput = " build/approvalTest /actual-output.txt"
14+ def approvalExpectedOutput = " . /expected-output.txt"
15+ def approvalActualOutput = " . /actual-output.txt"
1616
1717sonarqube {
1818 properties {
@@ -165,10 +165,10 @@ task copyRunScripts(type: Copy) {
165165
166166 // copy and modify run scripts for bin version
167167 from " ${ projectDir} /cobolcheck.cmd"
168- into " ${ projectDir} /approvalTest"
168+ into " ${ projectDir} /temp/ approvalTest"
169169 filter { line -> line. replaceAll(' @VERSION@' , productVersion) }
170170 from " ${ projectDir} /cobolcheck"
171- into " ${ projectDir} /approvalTest"
171+ into " ${ projectDir} /temp/ approvalTest"
172172 filter { line -> line. replaceAll(' @VERSION@' , productVersion) }
173173
174174 println (" Copied with jar version ${ productVersion} to approvalTest directory" )
You can’t perform that action at this time.
0 commit comments