Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Runs a series of sample programs in QEMU and checks that the standard output
# is as expected.
Expand Down Expand Up @@ -66,7 +66,7 @@ done

# These tests only run on QEMU 9 or higher.
# Ubuntu 24.04 supplies QEMU 8, which doesn't support the machine we have configured for this target
if qemu-system-arm --version | grep "version 9"; then
if qemu-system-arm --version | grep "version \(9\|10\)"; then
# armv8r-none-eabihf tests
for bin_path in $(ls examples/mps3-an536/src/bin/*.rs); do
filename=${bin_path##*/}
Expand Down