Skip to content

Commit

Permalink
Omit script output file
Browse files Browse the repository at this point in the history
  • Loading branch information
0152la committed Nov 28, 2023
1 parent c9c63ed commit d43d049
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .buildbot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ args=(
)
export BUILDBOT_PLATFORM=riscv64-purecap
args=${args[@]}
script -c "python3 tests/run_cheri_examples.py $args"
script -O /dev/null -c "python3 tests/run_cheri_examples.py $args"

echo "Running tests for 'morello-hybrid' using QEMU..."
args=(
Expand All @@ -66,7 +66,7 @@ args=(
)
export BUILDBOT_PLATFORM=morello-hybrid
args=${args[@]}
script -c "python3 tests/run_cheri_examples.py $args"
script -O /dev/null -c "python3 tests/run_cheri_examples.py $args"

echo "Running tests for 'morello-purecap' using QEMU..."
args=(
Expand All @@ -82,4 +82,4 @@ args=(
)
export BUILDBOT_PLATFORM=morello-purecap
args=${args[@]}
script -c "python3 tests/run_cheri_examples.py $args"
script -O /dev/null -c "python3 tests/run_cheri_examples.py $args"

0 comments on commit d43d049

Please sign in to comment.