diff options
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index d344823..3f21eaf 100644 --- a/test/Makefile +++ b/test/Makefile @@ -73,7 +73,7 @@ check-local:: site.exp @echo "*** dejagnu not found. Make sure 'runtest' is in your PATH, then reconfigure LLVM." endif -check-local-lit:: lit.site.cfg +check-local-lit:: lit.site.cfg Unit/lit.site.cfg ( $(ULIMIT) \ $(LLVM_SRC_ROOT)/utils/lit/lit.py \ --path "$(LLVMToolDir)" \ @@ -171,3 +171,18 @@ lit.site.cfg: site.exp @echo >> $@ @echo "# Let the main config do the real work." >> $@ @echo "lit.load_config(config, \"\"\"$(LLVM_SRC_ROOT)/test/lit.cfg\"\"\")" >> $@ + +Unit/lit.site.cfg: Unit/.dir FORCE + @echo "Making unittest 'lit.site.cfg' file..." + @echo "## Autogenerated by Makefile ##" > $@ + @echo "# Do not edit!" >> $@ + @echo >> $@ + @echo "# Preserve some key paths for use by main LLVM test suite config." >> $@ + @echo "config.llvm_obj_root = \"\"\"$(LLVM_OBJ_ROOT)\"\"\"" >> $@ + @echo >> $@ + @echo "# Remember the build mode." >> $@ + @echo "config.llvm_build_mode = \"\"\"$(BuildMode)\"\"\"" >> $@ + @echo >> $@ + @echo "# Let the main config do the real work." >> $@ + @echo "lit.load_config(config, \"\"\"$(LLVM_SRC_ROOT)/test/Unit/lit.cfg\"\"\")" >> $@ + |