summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2022-09-03 23:45:57 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2022-09-03 23:45:57 -0400
commit2c04437d6d8ee38c254c2b683e838e4f30bb8d9c (patch)
tree6165bc7c6a6a33d19bbc1e6f7eef10d256368d4f
parentc7265f2b085025d85474acc99da6aa954dde393c (diff)
ci: Redirect test output to /dev/null
We get this in the dashboard: instead, let's have stdout for debugging the CI itself. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r--ci/_test-git-branch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/_test-git-branch.sh b/ci/_test-git-branch.sh
index 2f5803f..764870f 100644
--- a/ci/_test-git-branch.sh
+++ b/ci/_test-git-branch.sh
@@ -84,7 +84,7 @@ while (( ${#SUBTESTS[@]} )); do
$KTEST_DIR/lib/supervisor -T 1200 -f "$FULL_LOG" -S -F \
-b $TEST_NAME -o ktest-out/out \
- -- build-test-kernel run $TEST_PATH ${SUBTESTS[@]} &
+ -- build-test-kernel run $TEST_PATH ${SUBTESTS[@]} > /dev/null &
wait
SUBTESTS_REMAINING=()