fix changelog

This commit is contained in:
Sylvestre Ledru 2021-07-31 21:06:27 +02:00
parent 972d4e79a4
commit f20d336773
2 changed files with 7 additions and 1 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
llvm-toolchain-13 (1:13~++20210720093711+b2e25572d2a7-1~exp1) experimental; urgency=medium llvm-toolchain-13 (1:13~++20210731010128+6eaf46beb462-1~exp1) experimental; urgency=medium
* Branching of snapshot into 13 * Branching of snapshot into 13
* Adjust libclang: * Adjust libclang:

View File

@ -813,9 +813,15 @@ if ! grep "No such file or directory" foo.log; then
# This isn't failing on 64, so, look at the results # This isn't failing on 64, so, look at the results
if ! ./a.out 2>&1 | grep -q -E "(Test unit written|PreferSmall)"; then if ! ./a.out 2>&1 | grep -q -E "(Test unit written|PreferSmall)"; then
echo "fuzzer. Output:" echo "fuzzer. Output:"
<<<<<<< Updated upstream
./a.out || true ./a.out || true
if [ $DEB_HOST_ARCH == "amd64" -o $DEB_HOST_ARCH == "i386" ]; then if [ $DEB_HOST_ARCH == "amd64" -o $DEB_HOST_ARCH == "i386" ]; then
# Don't fail on arm64 and ppc64el # Don't fail on arm64 and ppc64el
=======
./a.out
if [ $DEB_HOST_ARCH != "arm64" ]; then
# Don't fail on arm64
>>>>>>> Stashed changes
exit 42 exit 42
fi fi
fi fi