Skip to content

Commit 4a6030a

Browse files
committed
run-tests: Execute arm64ec tests on Windows 11 on aarch64
1 parent 4700b4f commit 4a6030a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

run-tests.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ set_native() {
107107
if [ -n "$winbuild" ] && [ "$winbuild" -ge 22000 ]; then
108108
# Since Windows 11, x86_64 binaries can also be emulated.
109109
RUN_X86_64=true
110+
# arm64ec can also be executed (as it is part of being able to
111+
# execute x86_64).
112+
RUN_ARM64EC=true
113+
NATIVE_ARM64EC=1
110114
fi
111115
if [ -n "$winbuild" ] && [ "$winbuild" -lt 26100 ]; then
112116
# Since Windows 11 24H2 armv7 binaries can no longer be
@@ -206,7 +210,9 @@ for arch in $ARCHS; do
206210
arm64ec)
207211
unset HAVE_UBSAN
208212
unset HAVE_OPENMP
209-
unset RUN
213+
RUN="$RUN_ARM64EC"
214+
COPY="$COPY_ARM64EC"
215+
NATIVE="$NATIVE_ARM64EC"
210216
;;
211217
esac
212218

0 commit comments

Comments
 (0)