Skip to content

Commit

Permalink
[#200] Add missing test-result-dir param in testdata configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
mengdaming committed Jan 2, 2023
1 parent 16f9c9c commit 24cee3e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 18 deletions.
1 change: 1 addition & 0 deletions src/testdata/java/.tcr/toolchain/gradle-wrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ test:
arch: [ "386", amd64, arm64 ]
command: .\gradlew.bat
arguments: [ test ]
test-result-dir: build/test-results/test
1 change: 1 addition & 0 deletions src/testdata/java/.tcr/toolchain/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ test:
arch: [ "386", amd64, arm64 ]
command: gradle
arguments: [ test ]
test-result-dir: build/test-results/test
25 changes: 13 additions & 12 deletions src/testdata/java/.tcr/toolchain/maven-wrapper.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
build:
- os: [darwin, linux]
arch: ["386", amd64, arm64]
- os: [ darwin, linux ]
arch: [ "386", amd64, arm64 ]
command: ./mvnw
arguments: [test-compile]
- os: [windows]
arch: ["386", amd64, arm64]
arguments: [ test-compile ]
- os: [ windows ]
arch: [ "386", amd64, arm64 ]
command: .\mvnw.cmd
arguments: [test-compile]
arguments: [ test-compile ]
test:
- os: [darwin, linux]
arch: ["386", amd64, arm64]
- os: [ darwin, linux ]
arch: [ "386", amd64, arm64 ]
command: ./mvnw
arguments: [test]
- os: [windows]
arch: ["386", amd64, arm64]
arguments: [ test ]
- os: [ windows ]
arch: [ "386", amd64, arm64 ]
command: .\mvnw.cmd
arguments: [test]
arguments: [ test ]
test-result-dir: target/surefire-reports
13 changes: 7 additions & 6 deletions src/testdata/java/.tcr/toolchain/maven.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
build:
- os: [darwin, linux, windows]
arch: ["386", amd64, arm64]
- os: [ darwin, linux, windows ]
arch: [ "386", amd64, arm64 ]
command: mvn
arguments: [test-compile]
arguments: [ test-compile ]
test:
- os: [darwin, linux, windows]
arch: ["386", amd64, arm64]
- os: [ darwin, linux, windows ]
arch: [ "386", amd64, arm64 ]
command: mvn
arguments: [test]
arguments: [ test ]
test-result-dir: target/surefire-reports

0 comments on commit 24cee3e

Please sign in to comment.