]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Makefile
Update clang to r108428.
[FreeBSD/FreeBSD.git] / test / Makefile
1 CLANG_LEVEL := ..
2 include $(CLANG_LEVEL)/Makefile
3
4 # Test in all immediate subdirectories if unset.
5 ifdef TESTSUITE
6 TESTDIRS := $(TESTSUITE:%=$(PROJ_SRC_DIR)/%)
7 else
8 TESTDIRS ?= $(PROJ_SRC_DIR)
9 endif
10
11 # 'lit' wants objdir paths, so it will pick up the lit.site.cfg.
12 TESTDIRS := $(TESTDIRS:$(PROJ_SRC_DIR)%=$(PROJ_OBJ_DIR)%)
13
14 # Allow EXTRA_TESTDIRS to provide additional test directories.
15 TESTDIRS += $(EXTRA_TESTDIRS)
16
17 ifndef TESTARGS
18 ifdef VERBOSE
19 TESTARGS = -v
20 else
21 TESTARGS = -s -v 
22 endif
23 endif
24
25 # Make sure any extra test suites can find the main site config.
26 LIT_ARGS := --param clang_site_config=$(PROJ_OBJ_DIR)/lit.site.cfg
27
28 ifdef VG
29   LIT_ARGS += "--vg"
30 endif
31
32 all:: lit.site.cfg
33         @ echo '--- Running clang tests for $(TARGET_TRIPLE) ---'
34         @ $(PYTHON) $(LLVM_SRC_ROOT)/utils/lit/lit.py \
35           $(LIT_ARGS) $(TESTARGS) $(TESTDIRS)
36
37 FORCE:
38
39 lit.site.cfg: FORCE
40         @echo "Making Clang 'lit.site.cfg' file..."
41         @sed -e "s#@LLVM_SOURCE_DIR@#$(LLVM_SRC_ROOT)#g" \
42              -e "s#@LLVM_BINARY_DIR@#$(LLVM_OBJ_ROOT)#g" \
43              -e "s#@LLVM_TOOLS_DIR@#$(ToolDir)#g" \
44              -e "s#@LLVM_LIBS_DIR@#$(LibDir)#g" \
45              -e "s#@CLANG_SOURCE_DIR@#$(PROJ_SRC_DIR)/..#g" \
46              -e "s#@CLANG_BINARY_DIR@#$(PROJ_OBJ_DIR)/..#g" \
47              -e "s#@TARGET_TRIPLE@#$(TARGET_TRIPLE)#g" \
48              $(PROJ_SRC_DIR)/lit.site.cfg.in > $@
49
50 clean::
51         @ find . -name Output | xargs rm -fr
52
53 # Daniel hates Chris.
54 chris-lit:
55         make LIT_ARGS='-j16 -s'
56
57 .PHONY: all report clean