From 2700adebfaa268c415d295e27614eec0933b3554 Mon Sep 17 00:00:00 2001 From: Hongbin Zheng Date: Fri, 30 Mar 2012 09:27:07 +0000 Subject: [PATCH] Autoconf build: Try to update LLVMPolly.so before running regression tests llvm-svn: 153738 --- polly/test/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/polly/test/Makefile b/polly/test/Makefile index 24b7338e3cdb..e3c08599cfe3 100755 --- a/polly/test/Makefile +++ b/polly/test/Makefile @@ -31,13 +31,17 @@ ifdef VG LIT_ARGS += "--vg" endif -polly-test:: lit.site.cfg + +polly-test:: lit.site.cfg polly-lib @ echo '--- Running polly tests for $(TARGET_TRIPLE) ---' @ $(PYTHON) $(LLVM_SRC_ROOT)/utils/lit/lit.py \ $(LIT_ARGS) $(TESTARGS) $(TESTDIRS) FORCE: +polly-lib: FORCE + $(MAKE) -C ../lib || exit 1; + lit.site.cfg: FORCE @echo "Making Polly 'lit.site.cfg' file..." @sed -e "s#@LLVM_SOURCE_DIR@#$(LLVM_SRC_ROOT)#g" \