Skip to content

Commit

Permalink
Fix KVM flags
Browse files Browse the repository at this point in the history
  • Loading branch information
haesbaert committed Feb 11, 2025
1 parent c8934b4 commit 71691db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testing/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ run_tests() {

parallel \
-k -j${jobs} \
./scripts/invoke_qemu.sh $arch $initramfs {} ">" $RESULTS_DIR/{/}.txt ::: $@
./scripts/invoke_qemu.sh -k $arch $initramfs {} ">" $RESULTS_DIR/{/}.txt ::: $@

echo "BPF-check run for $# $arch kernel(s) at $(date)" > $SUMMARY_FILE
for f in $RESULTS_DIR/*; do
Expand Down
2 changes: 1 addition & 1 deletion testing/scripts/invoke_qemu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ EOF
main() {
local debug
local kvm_requested
while getopts "d" opt; do
while getopts "dk" opt; do
case ${opt} in
d ) debug="1"
;;
Expand Down

0 comments on commit 71691db

Please sign in to comment.