From 9a86c9bd30e06daa20e4a4872d9292d177d66c8a Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Wed, 31 May 2017 14:15:53 -0700 Subject: [PATCH] Clean source directory before building tests in object directories. --- scripts/gen_run_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/gen_run_tests.py b/scripts/gen_run_tests.py index 1d70057f..39e2be24 100755 --- a/scripts/gen_run_tests.py +++ b/scripts/gen_run_tests.py @@ -31,6 +31,7 @@ possible_malloc_conf_opts = [ ] print 'set -e' +print 'if [ -f Makefile ] ; then make relclean ; fi' print 'autoconf' print 'rm -rf run_tests.out' print 'mkdir run_tests.out'