mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-21 14:12:46 +00:00
Make autopkgtest/qualify-clang.sh work on arm64
This commit is contained in:
parent
31c0940c60
commit
261f8fdf68
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
llvm-toolchain-10 (1:10.0.0~+rc4-2) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Make autopkgtest/qualify-clang.sh work on arm64
|
||||||
|
|
||||||
|
-- Sylvestre Ledru <sylvestre@debian.org> Sun, 15 Mar 2020 16:18:07 +0100
|
||||||
|
|
||||||
llvm-toolchain-10 (1:10.0.0~+rc4-1) unstable; urgency=medium
|
llvm-toolchain-10 (1:10.0.0~+rc4-1) unstable; urgency=medium
|
||||||
|
|
||||||
* Fourth RC release
|
* Fourth RC release
|
||||||
|
6
debian/qualify-clang.sh
vendored
6
debian/qualify-clang.sh
vendored
@ -732,10 +732,14 @@ LANG=C clang-$VERSION -fsanitize=fuzzer test_fuzzer.cc &> foo.log || true
|
|||||||
if ! grep "No such file or directory" foo.log; then
|
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"
|
echo "fuzzer. Output:"
|
||||||
|
./a.out
|
||||||
|
if [ $DEB_HOST_ARCH != "arm64" ]; then
|
||||||
|
# Don't fail on arm64
|
||||||
exit 42
|
exit 42
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
echo 'int main() {
|
echo 'int main() {
|
||||||
int a=0;
|
int a=0;
|
||||||
|
Loading…
Reference in New Issue
Block a user