restrict the check to make it work on i386

This commit is contained in:
Sylvestre Ledru 2018-11-06 12:15:04 +01:00
parent efadf6233b
commit fcc6121745

View File

@ -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