From: Simon Marchi Date: Mon, 21 Mar 2022 18:34:42 +0000 (-0400) Subject: jjb: binutils-gdb: remove ASAN_OPTIONS override X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=f381084f5c0a1b251f5d26a97f2c322824925b6a;p=lttng-ci.git jjb: binutils-gdb: remove ASAN_OPTIONS override The functionality has been merged in the GDB testsuite [1], so this is no longer needed. [1] https://gitlab.com/gnutools/binutils-gdb/-/commit/b44d87d4424324cb7a88b314f3a178694581a831 Change-Id: Ifbf622ea042fb9a14690b8368e08bcd8548a5d5d --- diff --git a/scripts/binutils-gdb/build.sh b/scripts/binutils-gdb/build.sh index e20899d..3076995 100755 --- a/scripts/binutils-gdb/build.sh +++ b/scripts/binutils-gdb/build.sh @@ -209,10 +209,7 @@ $MAKE install DESTDIR="$WORKSPACE" # Run tests, don't fail now, we know that "make check" is going to fail, # since some tests don't pass. -# -# Disable ASan leaks reporting, it might break some tests since it adds -# unexpected output when GDB exits. -ASAN_OPTIONS=detect_leaks=0 $MAKE -C gdb --keep-going check -j "$($NPROC)" || true +$MAKE -C gdb --keep-going check -j "$($NPROC)" || true # Copy the dejagnu test results for archiving before cleaning the build dir mkdir "${WORKSPACE}/results"