Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed Gradle build for approval tests #338

Open
wants to merge 1 commit into
base: Developer
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions approvaltest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
./cobolcheck -p NUMBERS > approval-test-actual.txt
./cobolcheck -p ALPHA >> approval-test-actual.txt
./cobolcheck -p GREETING >> approval-test-actual.txt
./cobolcheck -p FILECOPY >> approval-test-actual.txt
./cobolcheck -p MOCKTEST >> approval-test-actual.txt
./cobolcheck -p DPICNUMBERS >> approval-test-actual.txt
./GradleTemp/cobolcheck -p NUMBERS > approval-test-actual.txt
./GradleTemp/cobolcheck -p ALPHA >> approval-test-actual.txt
./GradleTemp/cobolcheck -p GREETING >> approval-test-actual.txt
./GradleTemp/cobolcheck -p FILECOPY >> approval-test-actual.txt
./GradleTemp/cobolcheck -p MOCKTEST >> approval-test-actual.txt
./GradleTemp/cobolcheck -p DPICNUMBERS >> approval-test-actual.txt
2 changes: 1 addition & 1 deletion approvaltestWin.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
./cobolcheck -p NUMBERS ALPHA GREETING FILECOPY MOCKTEST DPICNUMBERS > approval-test-actual.txt
./GradleTemp/cobolcheck.cmd -p NUMBERS ALPHA GREETING FILECOPY MOCKTEST DPICNUMBERS > approval-test-actual.txt
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ group = 'org.openmainframeproject'
description = 'Unit testing framework for Cobol'

def approvalExpectedOutput = "approval-test-expected.txt"
def approvalActualOutput = "output/testResults.txt"
def approvalActualOutput = "approval-test-actual.txt"

sonarqube {
properties {
Expand Down Expand Up @@ -194,7 +194,7 @@ task prepareDistribution(type: Zip) {

def approvalTest = tasks.register("approvalTest", Test) {
description 'Run approval test only'
dependsOn fatJar
dependsOn copyJarToBin, copyRunScripts
def output = -1

if ("${OS_NAME}" == "linux") {
Expand Down
Loading