diff --git a/Documentation/RunningTests.md b/Documentation/RunningTests.md index 1fe29bc1d6..920049c1aa 100644 --- a/Documentation/RunningTests.md +++ b/Documentation/RunningTests.md @@ -106,7 +106,7 @@ SystemModes=self-test ``` `/dev/ttyS0` is used as stdio because that serial port is connected when qemu is run with `-display none` and -`-nographic`, and output to it will show up in the stdout of the qemu window. Separately, the CI run script redirects +`-serial mon:stdio`, and output to it will show up in the stdout of the qemu window. Separately, the CI run script redirects the serial debug output to `./debug.log` so that both stdout of the tests and the dbgln from the kernel/tests can be captured. diff --git a/Meta/run.sh b/Meta/run.sh index 7d39005445..e7d0059400 100755 --- a/Meta/run.sh +++ b/Meta/run.sh @@ -523,7 +523,7 @@ elif [ "$SERENITY_RUN" = "ci" ]; then -M raspi3b \ -d guest_errors \ -no-reboot \ - -nographic \ + -serial mon:stdio \ -monitor none \ -display none \ -serial file:debug.log \ @@ -541,7 +541,7 @@ elif [ "$SERENITY_RUN" = "ci" ]; then -no-reboot \ -smp ${SERENITY_CPUS} \ -device ich9-ahci \ - -nographic \ + -serial mon:stdio \ -display none \ -debugcon file:debug.log \ $SERENITY_KERNEL_AND_INITRD \