File tree 1 file changed +3
-2
lines changed
common/junit-platform-native/src/main/java/org/graalvm/junit/platform
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 55
55
import org .junit .platform .launcher .listeners .UniqueIdTrackingListener ;
56
56
import org .junit .platform .reporting .legacy .xml .LegacyXmlReportGeneratingListener ;
57
57
58
+ import java .io .File ;
58
59
import java .io .IOException ;
59
60
import java .io .PrintWriter ;
60
61
import java .io .UncheckedIOException ;
@@ -218,15 +219,15 @@ private static Path getTestIDsFromDefaultLocations() {
218
219
}
219
220
220
221
private static Path getGradleTestIdsDefaultLocation () {
221
- return Path .of (getBuildDirectory ("/ build/" ))
222
+ return Path .of (getBuildDirectory (File . separator + " build" + File . separator ))
222
223
.resolve ("test-results" )
223
224
.resolve ("test" )
224
225
.resolve ("testlist" )
225
226
.toAbsolutePath ();
226
227
}
227
228
228
229
private static Path getMavenTestIDsDefaultLocation () {
229
- return Path .of (getBuildDirectory ("/ target/" ))
230
+ return Path .of (getBuildDirectory (File . separator + " target" + File . separator ))
230
231
.resolve ("test-ids" )
231
232
.toAbsolutePath ();
232
233
}
You can’t perform that action at this time.
0 commit comments