source: ThirdParty/levmar/tests/Makefile.am@ 8ce1a9

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 8ce1a9 was 8ce1a9, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '5443b10a06f0c125d0ae0500abb09901fda9666b' as 'ThirdParty/levmar'

  • Property mode set to 100644
File size: 1.8 KB
Line 
1AUTOM4TE = $(SHELL) $(top_srcdir)/build-aux/missing --run autom4te
2
3TESTSUITE = $(srcdir)/testsuite
4
5EXTRA_DIST = \
6 testsuite.at \
7 $(TESTSUITE) \
8 $(TESTSCRIPTS) \
9 atlocal.in \
10 lmdemo.in \
11 package.m4
12
13DISTCLEANFILES = atconfig
14
15TESTSCRIPTS =
16
17# PLEASE adhere to alphabetical ordering of TESTSCRIPTS
18
19TESTSCRIPTS += \
20 $(srcdir)/testsuite-lmdemo.at
21
22
23max_jobs = 4
24
25check-local: atconfig atlocal $(TESTSUITE)
26 nrjobs=; \
27 for flag in $$MAKEFLAGS; do \
28 case $$flag in \
29 --* | =*=) ;; \
30 *j*) nrjobs="-j$(max_jobs)" ;; \
31 esac; \
32 done; \
33 $(SHELL) '$(TESTSUITE)' $$nrjobs AUTOTEST_PATH='$(abs_top_builddir)/src' $(TESTSUITEFLAGS)
34
35installcheck-local: atconfig atlocal lmdemo $(TESTSUITE)
36 nrjobs=; \
37 for flag in $$MAKEFLAGS; do \
38 case $$flag in \
39 --* | =*=) ;; \
40 *j*) nrjobs="-j$(max_jobs)" ;; \
41 esac; \
42 done; \
43 $(SHELL) '$(TESTSUITE)' $$nrjobs AUTOTEST_PATH='$(bindir)' $(TESTSUITEFLAGS)
44
45clean-local:
46 test ! -f '$(TESTSUITE)' || \
47 $(SHELL) '$(TESTSUITE)' --clean
48
49AUTOTEST = $(AUTOM4TE) --language=autotest
50# testsuite must not depend on atlocal or atconfig as otherwise distcheck does
51# not work (wants to regenerate testsuite from testsuite.at in srcdir, which is
52# read-only)
53$(TESTSUITE): $(srcdir)/testsuite.at package.m4 $(TESTSCRIPTS)
54 $(AUTOTEST) -I '$(srcdir)' -o $@.tmp $@.at
55 mv $@.tmp $@
56
57# The `:;' works around a Bash 3.2 bug when the output is not writeable.
58package.m4: $(top_srcdir)/configure.ac
59 :;{ \
60 echo '# Signature of the current package.' && \
61 echo 'm4_define([AT_PACKAGE_NAME], [@PACKAGE_NAME@])' && \
62 echo 'm4_define([AT_PACKAGE_TARNAME], [@PACKAGE_TARNAME@])' && \
63 echo 'm4_define([AT_PACKAGE_VERSION], [@PACKAGE_VERSION@])' && \
64 echo 'm4_define([AT_PACKAGE_STRING], [@PACKAGE_STRING@])' && \
65 echo 'm4_define([AT_PACKAGE_BUGREPORT], [@PACKAGE_BUGREPORT@])'; \
66 } >'package.m4'
Note: See TracBrowser for help on using the repository browser.