Skip to content

Commit 2bd7be0

Browse files
matthijskooijmancmaglie
authored andcommitted
CommandLineTest: Print commands being ran
This makes the test output a bit more easier to read.
1 parent 2c679f2 commit 2bd7be0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/test/processing/app/CommandLineTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ public Process runArduino(boolean output, boolean success, File wd, String[] ext
8383
args.add(arduinoPath.getAbsolutePath());
8484
args.addAll(Arrays.asList(extraArgs));
8585

86+
System.out.println("Running: " + String.join(" ", args));
87+
8688
Process pr = rt.exec(args.toArray(new String[0]), null, wd);
8789
if (output) {
8890
IOUtils.copy(pr.getInputStream(), System.out);

0 commit comments

Comments
 (0)