From fcc61217451d50b39c34236ec35f943827782009 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 6 Nov 2018 12:15:04 +0100 Subject: [PATCH] restrict the check to make it work on i386 --- debian/qualify-clang.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/qualify-clang.sh b/debian/qualify-clang.sh index dd26f1db..c50482a2 100755 --- a/debian/qualify-clang.sh +++ b/debian/qualify-clang.sh @@ -206,7 +206,7 @@ if ! grep "Using llvm-symbolizer" foo.log; then cat foo.log exit 42 fi -if ! grep "new\[\](unsigned long)" foo.log; then +if ! grep "new\[\](unsigned" foo.log; then echo "could not symbolize correctly" cat foo.log exit 42 @@ -218,7 +218,7 @@ if ! grep "foo.cpp:3:3" foo.log; then exit 42 fi ./a.out &> foo.log || true -if ! grep "new\[\](unsigned long)" foo.log; then +if ! grep "new\[\](unsigned" foo.log; then echo "could not symbolize correctly" cat foo.log exit 42