Displayed standard error to see checkpoint errors

Closes gh-13
This commit is contained in:
Sébastien Deleuze
2023-08-07 15:07:58 +02:00
parent 82c0f5bc55
commit 9d92ee61fc
5 changed files with 49 additions and 20 deletions

View File

@@ -275,6 +275,8 @@ public class CrSmokeTestPlugin implements Plugin<Project> {
.withPropertyName("applicationBinary");
task.systemProperty("org.springframework.cr.smoketest.standard-output",
startTask.get().getOutputFile().get().getAsFile().getAbsolutePath());
task.systemProperty("org.springframework.cr.smoketest.standard-error",
startTask.get().getErrorFile().get().getAsFile().getAbsolutePath());
task.finalizedBy(stopTask);
task.setDescription("Runs the app test suite against the " + type.description + " application.");
task.setGroup(JavaBasePlugin.VERIFICATION_GROUP);