1# -*- mode: makefile-gmake -*- 2 3CONFIGDIR := config 4 5# TESTSRCDIR is always relative to gmakefile.test 6# This must be before includes 7mkfile_path := $(abspath $(MAKEFILE_LIST)) 8TESTSRCDIR := $(dir $(abspath $(firstword $(MAKEFILE_LIST)))) 9 10# If $(PETSC_ARCH) is empty, this defines it and PETSC_DIR 11include $(PETSC_ARCH)/lib/petsc/conf/petscvariables 12include ./lib/petsc/conf/variables 13 14ifeq ($(TESTDIR),) # Default 15TESTDIR := $(PETSC_ARCH)/tests 16gmakegentest_opts= 17else 18gmakegentest_opts="-t $(TESTDIR)" 19TESTDIR := $(TESTDIR) 20endif 21MODDIR := $(PETSC_ARCH)/include 22TESTLOGFILE = $(TESTDIR)/examples-$(PETSC_ARCH).log 23 24pkgs := sys vec mat dm ksp snes ts tao 25 26petscconf := $(PETSC_ARCH)/include/petscconf.h 27petscvariables := $(PETSC_ARCH)/lib/petsc/conf/petscvariables 28generatedtest := $(PETSC_ARCH)/lib/petsc/conf/testfiles 29 30.SECONDEXPANSION: # to expand $$(@D)/.DIR 31 32TESTFLAGS := # Initialize as simple variable 33 34#workarround old cygwin versions 35ifeq ($(PETSC_CYGWIN_BROKEN_PIPE),1) 36ifeq ($(shell basename $(AR)),ar) 37 V ?=1 38endif 39endif 40V ?= $(if $(findstring s,$(MAKEFLAGS)),0) 41ifeq ($(V),) # Default 42 quiet_HELP := "Use \"$(MAKE) V=1\" to see verbose compile lines, \"$(MAKE) V=0\" to suppress.\n" 43 quiet = @printf $(quiet_HELP)$(eval quiet_HELP:=)" %10s %s\n" "$1$2" "$@"; $($1) 44 quiettest = @printf " %10s %s\n" "TEST" "$(@:$(TESTDIR)/counts/%.counts=%)"; 45else ifeq ($(V),0) # Suppress entire command 46 quiet = @$($1) 47 quiettest = @ 48else # Show the full command line 49 quiet = $($1) 50 quiettest = 51 TESTFLAGS += -v 52endif 53 54ifeq ($(FORCE),1) 55 TESTFLAGS += -f # force test execution 56endif 57ifeq ($(VALGRIND),1) 58 TESTFLAGS += -V # Add valgrind to the flags 59endif 60ifeq ($(REPLACE),1) 61 TESTFLAGS += -m # Replace results by passing -m to petscdiff 62endif 63ifeq ($(ALT),1) 64 TESTFLAGS += -M # Replace alt files by passing -M to petscdiff 65endif 66ifeq ($(DIFF_NUMBERS),1) 67 TESTFLAGS += -j # Pass -j to petscdiff to diff the actual numbers 68endif 69ifdef OPTIONS 70 TESTFLAGS += -a '$(OPTIONS)' # override arguments 71endif 72ifdef EXTRA_OPTIONS 73 TESTFLAGS += -e '$(EXTRA_OPTIONS)' # add extra arguments 74endif 75ifdef NP 76 TESTFLAGS += -n $(NP) # set number of processes 77endif 78# Override the default timeout that may be found at the top of config/petsc_harness.sh 79# This must be an integer. It is given in seconds. 80ifdef TIMEOUT 81 TESTFLAGS += -t $(TIMEOUT) # Override the default timeout 82endif 83 84 85 86$(generatedtest) : $(petscconf) $(petscvariables) $(CONFIGDIR)/gmakegentest.py $(TESTDIR)/.DIR | $$(@D)/.DIR 87 $(PYTHON) $(CONFIGDIR)/gmakegentest.py --petsc-arch=$(PETSC_ARCH) $(gmakegentest_opts) 88 89-include $(generatedtest) 90 91ifeq ($(PETSC_LANGUAGE),CXXONLY) 92 cc_name := CXX 93else 94 cc_name := CC 95endif 96 97PETSC_COMPILE.c = $(call quiet,$(cc_name)) -c $(PCC_FLAGS) $(CFLAGS) $(CCPPFLAGS) $(C_DEPFLAGS) 98PETSC_COMPILE.cxx = $(call quiet,CXX) -c $(CXX_FLAGS) $(CFLAGS) $(CCPPFLAGS) $(CXX_DEPFLAGS) 99PETSC_COMPILE.cu = $(call quiet,CUDAC) -c $(CUDAC_FLAGS) --compiler-options="$(PCC_FLAGS) $(CXXFLAGS) $(CCPPFLAGS)" 100PETSC_GENDEPS.cu = $(call quiet,CUDAC,.dep) --generate-dependencies --output-directory=$(@D) $(CUDAC_FLAGS) --compiler-options="$(PCC_FLAGS) $(CXXFLAGS) $(CCPPFLAGS)" 101PETSC_COMPILE.F = $(call quiet,FC) -c $(FC_FLAGS) $(FFLAGS) $(FCPPFLAGS) $(FC_DEPFLAGS) 102 103testlangs := c cu cxx F F90 104concattestlang = $(foreach lang, $(2), $(testsrcs-$(1).$(lang):%.$(lang)=$(TESTDIR)/%.o)) 105testsrcs.o := $(foreach pkg, $(pkgs), $(call concattestlang,$(pkg),$(testlangs))) 106testsrcs-rel := $(foreach pkg, $(pkgs), $(foreach lang, $(testlangs), $(testsrcs-$(pkg).$(lang)))) 107testsrcs := $(foreach sfile, $(testsrcs-rel), $(TESTSRCDIR)/$(sfile)) 108 109# Refresh testfiles when sources change, but don't balk if the source file is nonexistent (deleted) 110$(generatedtest) : $(testsrcs) 111$(testsrcs) : 112 113$(TESTDIR)/%.o : %.c | $$(@D)/.DIR 114 $(PETSC_COMPILE.c) $(abspath $<) -o $@ 115 116$(TESTDIR)/%.o : %.cxx | $$(@D)/.DIR 117 $(PETSC_COMPILE.cxx) $(abspath $<) -o $@ 118 119$(TESTDIR)/%.o : %.cu | $$(@D)/.DIR 120 $(PETSC_COMPILE.cu) $(abspath $<) -o $@ # Compile first so that if there is an error, it comes from a normal compile 121 @$(PETSC_GENDEPS.cu) $(abspath $<) -o $(@:%.o=%.d) # Generate the dependencies for later 122 123# Test modules go in a different directory 124$(TESTDIR)/%.o : MODDIR = $(@D) 125FCMOD = cd 126$(TESTDIR)/%.o : %.F | $$(@D)/.DIR 127ifeq ($(FC_MODULE_OUTPUT_FLAG),) 128 $(call quiet,FCMOD) $(MODDIR) && $(FC) -c $(FC_FLAGS) $(FFLAGS) $(FCPPFLAGS) $(FC_DEPFLAGS) $(abspath $<) -o $(abspath $@) 129else 130 $(PETSC_COMPILE.F) $(abspath $<) -o $@ $(FC_MODULE_OUTPUT_FLAG)$(MODDIR) 131endif 132 133$(TESTDIR)/%.o : %.F90 | $$(@D)/.DIR 134ifeq ($(FC_MODULE_OUTPUT_FLAG),) 135 $(call quiet,FCMOD) $(MODDIR) && $(FC) -c $(FC_FLAGS) $(FFLAGS) $(FCPPFLAGS) $(FC_DEPFLAGS) $(abspath $<) -o $(abspath $@) 136else 137 $(PETSC_COMPILE.F) $(abspath $<) -o $@ $(FC_MODULE_OUTPUT_FLAG)$(MODDIR) 138endif 139# This is a hack to fix a broken gfortran. 140 -@if test "`head -1 $(@:%.o=%.d) | grep : 2> /dev/null`" == ""; then \ 141 echo "$(@): \\" > $(@:%.o=%.dtemp) ; \ 142 tail -n +2 $(@:%.o=%.d) | grep -v '\.mod: \\' >> $(@:%.o=%.dtemp) ; \ 143 mv $(@:%.o=%.dtemp) $(@:%.o=%.d); \ 144 fi 145 146# link line constructed differently for gmakefile vs gmakefile.test invocation 147ifeq ($(libpetscall),) 148PETSC_TEST_LIB = $(PETSC_LIB) 149else 150PETSC_TEST_LIB = $(C_SH_LIB_PATH) $(PETSC_EXTERNAL_LIB_BASIC) 151endif 152 153# Test executables 154$(TESTDIR)/%f : $(TESTDIR)/%f.o $$^ $(libpetscall) 155 $(call quiet,FLINKER) -o $@ $^ $(PETSC_TEST_LIB) 156 157$(TESTDIR)/%f90 : $(TESTDIR)/%f90.o $$^ $(libpetscall) 158 $(call quiet,FLINKER) -o $@ $^ $(PETSC_TEST_LIB) 159 160$(TESTDIR)/% : $(TESTDIR)/%.o $$^ $(libpetscall) 161 $(call quiet,CLINKER) -o $@ $^ $(PETSC_TEST_LIB) 162 163# Fortran source files need petsc*.mod, which isn't explicitly managed in the makefile. 164$(foreach pkg, $(pkgs), $(call concattestlang,$(pkg),F F90)) : $(libpetscall) 165 166# Testing convenience targets 167.PHONY: test pre-clean 168 169test: pre-clean report_tests 170 171pre-clean: 172 @$(RM) -r $(TESTDIR)/counts $(TESTLOGFILE) 173 @touch $(TESTLOGFILE) 174 175.PHONY: $(foreach pkg, $(pkgs), test-$(pkg) $(foreach lang, $(testlangs), test-$(pkg).$(lang) test-rm-$(pkg).$(lang))) 176testpkgs := $(foreach pkg, $(pkgs), test-$(pkg)) 177# Targets to run tests in test-$pkg.$lang and delete the executables, language by language 178$(testpkgs) : test-% : $(foreach lang, $(testlangs), test-rm-%.$(lang)) 179# List of raw test run targets 180alltesttargets := $(foreach tp, $(testpkgs), $(foreach lang, $(testlangs), $($(tp).$(lang)))) 181 182# Run targets 183$(alltesttargets) : % : $(TESTDIR)/counts/%.counts 184.PHONY: $(alltesttargets) 185 186$(TESTDIR)/counts/%.counts : 187 $(quiettest) $< $(TESTFLAGS) 188 189# Targets to run tests and remove executables, by package-lang pairs. 190# Run the tests in each batch using recursive invocation of make because 191# we need all of them to complete before removing the executables. Make 192# doesn't guarantee an exploration order for the graph. Only recursive 193# if there is something to be done. 194alltest-rm := $(foreach pkg, $(pkgs), $(foreach lang, $(testlangs), test-rm-$(pkg).$(lang))) 195$(alltest-rm) : test-rm-% : test-% 196ifneq ($(NO_RM),1) 197 $(call quiet,RM) $(addprefix $(TESTDIR)/,$(basename $($(@:test-rm-%=testsrcs-%)))) 198endif 199 200# Remove intermediate .o files 201# This only removes the files at the end which is insufficient 202#.INTERMEDIATE: $(testsrcs.o:%.o=%) 203 204# all sources should get recompiled when petscvariables changes (i.e when configure is rerun or when petscvariables is manually edited.) 205$(testsrcs.o) : $(petscvariables) 206 207%/.DIR : 208 @mkdir -p $(@D) 209 @touch $@ 210 211.PRECIOUS: %/.DIR 212 213.SUFFIXES: # Clear .SUFFIXES because we don't use implicit rules 214.DELETE_ON_ERROR: # Delete likely-corrupt target file if rule fails 215 216.PHONY: clean cleantest all print 217 218cleantest: 219 ${RM} -r $(TESTDIR) $(generatedtest) 220 221clean: cleantest 222 223# make print VAR=the-variable 224print: 225 @echo $($(VAR)) 226 227alltest.d := $(testsrcs.o:%.o=%.d) 228# Tell make that alltest.d are all up to date. Without this, the include 229# below has quadratic complexity, taking more than one second for a 230# do-nothing build of PETSc (much worse for larger projects) 231$(alltest.d) : ; 232 233-include $(alltest.d) 234 235# Tests can be generated by searching 236# Percent is a wildcard (only one allowed): 237# make -f gmakefile test search=sys%ex2 238# To match internal substrings (matches *ex2*): 239# make -f gmakefile test searchin=ex2 240# Search and searchin can be combined: 241# make -f gmakefile test search='sys%' searchin=ex2 242# For args: 243# make -f gmakefile test argsearch=cuda 244# For general glob-style searching using python: 245# NOTE: uses shell which is possibly slower and is possibly more brittle 246# make -f gmakefile test globsearch='sys*ex2*' 247ifdef search 248 TESTTARGETS := $(filter $(search),$(alltesttargets)) 249 ifdef searchin 250 TESTTARGETS2 := $(foreach v,$(TESTTARGETS),$(if $(findstring $(searchin),$(v)),$(v))) 251 TESTTARGETS := $(TESTTARGETS2) 252 endif 253else ifdef searchin 254 TESTTARGETS := $(foreach v,$(alltesttargets),$(if $(findstring $(searchin),$(v)),$(v))) 255else ifdef argsearch 256 TESTTARGETS := $(foreach v,$(alltesttargets),$(if $(findstring $(argsearch),$($(v)_ARGS)),$(v))) 257else ifdef globsearch 258 TESTTARGETS := $(shell $(PYTHON) -c"import sys,fnmatch; print ' '.join(fnmatch.filter(sys.argv[2].split(),sys.argv[1]))" '$(globsearch)' '$(alltesttargets)') 259else # No filter - run them all, but delete the executables as we go 260 TESTTARGETS := $(testpkgs) 261endif 262 263.PHONY: report_tests print-test 264 265print-test: 266 -@echo $(TESTTARGETS) 267 268report_tests: $(TESTTARGETS) 269 -@$(PYTHON) $(CONFIGDIR)/report_tests.py -m $(MAKE) -d $(PETSC_ARCH)/tests/counts 270 271# Do not how how to invoke test from makefile 272HASGMAKEFILE := $(filter gmakefile,$(MAKEFILE_LIST)) 273ifeq ($(HASGMAKEFILE),gmakefile) 274helpdeps:=help-make help-targets 275makefile="gmakefile" 276else 277helpdeps:=help-make help-targets help-test 278makefile="gmakefile.test" 279endif 280 281help: ${helpdeps} 282 -@echo "Above is from: ${helpdeps}" 283 284help-make: 285 -@echo 286 -@echo "Basic build usage:" 287 -@echo " make -f ${makefile} <options>" 288 -@echo 289 -@echo "Options:" 290 -@echo " V=0 Very quiet builds" 291 -@echo " V=1 Verbose builds" 292 -@echo 293 294help-targets: 295 -@echo "All makefile targets and their dependencies:" 296 -@grep ^[a-z] ${makefile} | grep : | grep -v = 297 -@echo 298 -@echo 299 300help-test: 301 -@echo "Basic test usage:" 302 -@echo " make -f ${makefile} test <options>" 303 -@echo 304 -@echo "Options:" 305 -@echo " NO_RM=1 Do not remove the executables after running" 306 -@echo " REPLACE=1 Replace the output in PETSC_DIR source tree (-m to test scripts)" 307 -@echo " ALT=1 Replace 'alt' output in PETSC_DIR source tree (-M to test scripts)" 308 -@echo " DIFF_NUMBERS=1 Diff the numbers in the output (-j to test scripts and petscdiff)" 309 -@echo " VALGRIND=1 Execute the tests using valgrind (-V to test scripts)" 310 -@echo " TESTDIR='tests' Subdirectory where tests are run ($${PETSC_DIR}/$${PETSC_ARCH}/$${TESTDIR}" 311 -@echo " or $${PREFIX_DIR}/$${TESTDIR}" 312 -@echo " or $${PREFIX_DIR}/share/petsc/examples/$${TESTDIR})" 313 -@echo " OPTIONS='<args>' Override options to scripts (-a to test scripts)" 314 -@echo " EXTRA_OPTIONS='<args>' Add options to scripts (-e to test scripts)" 315 -@echo 316 -@echo "Tests can be generated by searching:" 317 -@echo " Percent is a wildcard (only one allowed):" 318 -@echo " make -f ${makefile} test search=sys%ex2" 319 -@echo 320 -@echo " To match internal substrings (matches *ex2*):" 321 -@echo " make -f ${makefile} test searchin=ex2" 322 -@echo 323 -@echo " Search and searchin can be combined:" 324 -@echo " make -f ${makefile} test search='sys%' searchin=ex2" 325 -@echo 326 -@echo " To match patterns in the arguments:" 327 -@echo " make -f ${makefile} test argsearch=cuda" 328 -@echo 329 -@echo " For general glob-style searching using python:" 330 -@echo " NOTE: uses shell which is possibly slower and more brittle" 331 -@echo " make -f ${makefile} test globsearch='sys*ex2*'" 332 -@echo 333 -@echo " To see which targets match a given pattern (useful for doing a specific target):" 334 -@echo " make -f ${makefile} print-test search=sys%" 335 -@echo " which is equivalent to:" 336 -@echo " make -f ${makefile} print VAR=TESTTARGETS search='sys%'" 337 -@echo 338 -@echo " To build an executable, give full path to location:" 339 -@echo ' make -f ${makefile} $${PETSC_ARCH}/tests/src/sys/examples/tests/ex1' 340 -@echo " or make the test with NO_RM=1" 341 -@echo 342