From a7fc73b111819cb2eb0e6e414d1b3fbed4dc616e Mon Sep 17 00:00:00 2001 From: Michael Rash Date: Fri, 10 Aug 2018 18:33:54 -0700 Subject: [PATCH] [test suite] start with -m32 gcc option for ASAN instrumentation check (32-bit compilation is preferred for ASAN operations) --- test/test-fwknop.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-fwknop.pl b/test/test-fwknop.pl index 6cfbfe69..2c4364b8 100755 --- a/test/test-fwknop.pl +++ b/test/test-fwknop.pl @@ -1647,7 +1647,7 @@ sub is_asan_instrumentation_working() { my $rv = 1; chdir $asan_dir or die $!; - for my $file ('Makefile', 'Makefile-m32') { + for my $file ('Makefile-m32', 'Makefile') { $rv = 1; unless (&run_cmd("make -f $file clean", "../$cmd_out_tmp", "../$curr_test_file")) {