Skip to content
This repository was archived by the owner on Jul 3, 2024. It is now read-only.

Commit 18695b8

Browse files
Don't build benchmarks for QEMU targets in regression
Signed-off-by: Nathaniel Graff <[email protected]>
1 parent fafb5a2 commit 18695b8

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

scripts/all-targets-build

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ for target in ${targets[@]}
1717
do
1818
for program in "${programs[@]}"
1919
do
20-
# Dhrystone doesn't fit in the QEMU S51 DTIM
21-
if [ "${target}" == "qemu-sifive-s51" -a "${program}" == "dhrystone" ] ; then
22-
continue
20+
# Coremark and Dhrystone don't fit in QEMU targets
21+
if [[ "${target}" == "qemu"* ]] ; then
22+
if [ "${program}" == "dhrystone" -o "${program}" == "coremark" ] ; then
23+
continue
24+
fi
2325
fi
2426

2527
make TARGET="${target}" PROGRAM="${program}" CONFIGURATION="${CONFIGURATION}" -j${nproc} software

0 commit comments

Comments
 (0)