1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
include $(top_srcdir)/common.mk
MAXIMA = @POSIX_SHELL@ $(top_srcdir)/maxima-local
if CLISP
check: check-clisp
check-clisp:
echo "Running test suite with clisp..."; \
$(MAXIMA) --lisp=clisp --batch-string="run_testsuite();" < /dev/null
endif
if CMUCL
check: check-cmucl
check-cmucl:
echo "Running test suite with cmucl..."; \
$(MAXIMA) --lisp=cmucl --batch-string="run_testsuite();" < /dev/null
endif
if SCL
check: check-scl
check-scl:
echo "Running test suite with scl..."; \
$(MAXIMA) --lisp=scl --batch-string="run_testsuite();" < /dev/null
endif
if SBCL
check: check-sbcl
check-sbcl:
echo "Running test suite with sbcl..."; \
$(MAXIMA) --lisp=sbcl --batch-string="run_testsuite();" < /dev/null
endif
if GCL
check: check-gcl
check-gcl:
echo "Running test suite with gcl..."; \
$(MAXIMA) --lisp=gcl --batch-string="run_testsuite();" < /dev/null
endif
if ACL
check: check-acl
check-acl:
echo "Running test suite with acl..."; \
$(MAXIMA) --lisp=acl --batch-string="run_testsuite();" < /dev/null
endif
if OPENMCL
check: check-openmcl
check-openmcl:
echo "Running test suite with openmcl..."; \
$(MAXIMA) --lisp=openmcl --batch-string="run_testsuite();" < /dev/null
endif
if ECL
check: check-ecl
check-ecl:
echo "Running test suite with ecl..."; \
$(MAXIMA) --lisp=ecl --batch-string="run_testsuite();" < /dev/null
endif
genericdir = $(insttestsdir)
genericdirDATA = rexamples.mac \
rtest10.mac \
rtest11.mac \
rtest12.mac \
rtest13.mac \
rtest13s.mac \
rtest14.mac \
rtest15.mac \
rtest16.mac \
rtest1a.mac \
rtest1.mac \
rtest2.mac \
rtest3.mac \
rtest4.mac \
rtest5.mac \
rtest6a.mac \
rtest6b.mac \
rtest6.mac \
rtest7.mac \
rtest8.mac \
rtest9a.mac \
rtest9.mac \
rtestode.mac \
rtestode_zp.mac \
rtestnset.mac \
rtesthyp.mac \
rtestmt19937.mac \
mcond_display_elseif.mac \
mcond_display_elseif.out \
rtestmcond_display.mac \
rtest_allnummod.mac \
rtestconjugate.mac \
rtestsum.mac \
rtest_trig.mac \
rtest_zeta.mac \
rtest_diff_invtrig.mac \
rtest_scalarp.mac \
rtest_everysome.mac \
rtestint.mac \
rtestifactor.mac \
rtest_equal.mac \
rtest_abs.mac \
rtest_taylor.mac \
rtest_dot.mac \
rtest_mset.mac \
rtest_boolean.mac \
rtest_round.mac \
rtest_map.mac \
rtest_sign.mac \
rtest_algebraic.mac \
rtest_hypgeo.mac \
rtest_gamma.mac \
rtest_expintegral.mac \
rtest_signum.mac \
rtest_lambert_w.mac \
rtest_elliptic.mac \
rtest_integrate.mac \
rtest_integrate_special.mac \
rtest_plot.mac \
rtest_translator.mac \
rtest_ask.mac \
rtest_sqrt.mac \
README.how-to \
testsuite.lisp \
wester_problems/wester-gpl-permission-message.txt \
wester_problems/test_algebra.mac \
wester_problems/test_boolean_logic.mac \
wester_problems/test_calculus.mac \
wester_problems/test_combinatorics.mac \
wester_problems/test_complex_domain.mac \
wester_problems/test_definite_integrals.mac \
wester_problems/test_equations.mac \
wester_problems/test_indefinite_integrals.mac \
wester_problems/test_inequalities.mac \
wester_problems/test_limits.mac \
wester_problems/test_math_vs_cs_local.mac \
wester_problems/test_math_vs_cs_match.mac \
wester_problems/test_matrix_theory.mac \
wester_problems/test_numbers.mac \
wester_problems/test_number_theory.mac \
wester_problems/test_numerical_analysis.mac \
wester_problems/test_odes.mac \
wester_problems/test_operators.mac \
wester_problems/test_pdes.mac \
wester_problems/test_pdes_heat.mac \
wester_problems/test_products.mac \
wester_problems/test_programming.mac \
wester_problems/test_programming_dif.mac \
wester_problems/test_series.mac \
wester_problems/test_set_theory.mac \
wester_problems/test_special_functions.mac \
wester_problems/test_statistics.mac \
wester_problems/test_sums.mac \
wester_problems/test_tensor_analysis.mac \
wester_problems/test_transforms.mac \
wester_problems/test_trigonometry.mac \
wester_problems/test_vector_analysis.mac \
wester_problems/test_zero_equivalence.mac
EXTRA_DIST = $(genericdirDATA)
|