From de2fcc9bc16f8cb8674655d94e5cd48181ace618 Mon Sep 17 00:00:00 2001 From: "zongmin.gu" Date: Thu, 9 Sep 2021 10:44:14 +0800 Subject: [PATCH] Fix the cpuid test case issue --- test/cpuid/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cpuid/Makefile b/test/cpuid/Makefile index 740b1c4c..30ddc5be 100644 --- a/test/cpuid/Makefile +++ b/test/cpuid/Makefile @@ -6,5 +6,5 @@ EXTRA_LINK_FLAGS := BIN_ARGS := test_cpuid.txt: - @/usr/bin/cpuid -r -1 > $@ + @/usr/bin/cpuid -r -1 | sed -r '/^\s*0x[^ 08][0-9a-f]{7}\s/d' > $@ @mv $@ $(IMAGE_DIR)/$@