From 4b9ca605cfe2f3773f2b613bbc2aacf4e7d66667 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 26 Dec 2024 03:36:50 -0800 Subject: [PATCH] fix mingw32 test the file statement just changed --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67278d51..2d759056 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -638,7 +638,7 @@ jobs: PATH=/mingw32/bin:$PATH /mingw32/bin/mingw32-make.exe clean test MOREFLAGS=-Werror PATH=/mingw32/bin:$PATH /mingw32/bin/mingw32-make.exe -C tests/bench # Abort if result of "file ./xxhsum.exe" doesn't contain '80386'. - # Expected output is "./xxhsum.exe: PE32 executable (console) Intel 80386, for MS Windows" + # Expected output is "./xxhsum.exe: PE32 executable (console) Intel i386, for MS Windows" file ./xxhsum.exe - file ./xxhsum.exe | grep -q '80386' || $(exit 1) + file ./xxhsum.exe | grep -q '386' || $(exit 1) ./xxhsum.exe --version