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
|
if EXTENDED_TESTS
EXTRA_TESTS = distribution_tests \
lognormal_test \
rake_test \
test_kernel_ll \
update_via_rng \
$(top_builddir)/eg/cross_models \
$(top_builddir)/eg/dconstrain \
$(top_builddir)/eg/entropy_model \
$(top_builddir)/eg/f_test \
$(top_builddir)/eg/fix_params \
$(top_builddir)/eg/hills2 \
$(top_builddir)/eg/jack \
$(top_builddir)/eg/jacobian \
$(top_builddir)/eg/ml_imputation \
$(top_builddir)/eg/pmf_test \
$(top_builddir)/eg/some_cdfs \
$(top_builddir)/eg/test_kl_divergence \
$(top_builddir)/eg/test_ranks \
$(top_builddir)/eg/test_updating \
$(top_builddir)/eg/transform
else
EXTRA_TESTS =
endif
check_PROGRAMS= \
db_tests \
error_test \
factors \
nist_tests \
sort_example \
test_apop \
$(top_builddir)/eg/apop_map_row \
$(top_builddir)/eg/binning \
$(top_builddir)/eg/boot_clt \
$(top_builddir)/eg/data_fill \
$(top_builddir)/eg/draw_to_db \
$(top_builddir)/eg/db_fns \
$(top_builddir)/eg/dot_products \
$(top_builddir)/eg/entropy_vector \
$(top_builddir)/eg/iv \
$(top_builddir)/eg/ks_tests \
$(top_builddir)/eg/logit \
$(top_builddir)/eg/fake_logit \
$(top_builddir)/eg/normalization_demo \
$(top_builddir)/eg/ols \
$(top_builddir)/eg/ols_oneliner \
$(top_builddir)/eg/parameterization \
$(top_builddir)/eg/simple_subsets \
$(top_builddir)/eg/t_test_by_rows \
$(top_builddir)/eg/test_distances \
$(top_builddir)/eg/test_fisher \
$(top_builddir)/eg/test_harmonic \
$(top_builddir)/eg/test_pruning \
$(top_builddir)/eg/test_regex $(EXTRA_TESTS)
TESTS = \
utilities_test \
$(check_PROGRAMS)
AM_CFLAGS = \
-DTesting \
-DDatadir=\"$(top_srcdir)/tests/\" \
-I$(top_srcdir)/tests \
-I$(top_srcdir) \
$(GSL_CFLAGS)
AM_CFLAGS += -Wno-unused-result
AM_LDFLAGS = \
$(top_builddir)/libapophenia.la \
$(GSL_LIBS)
DATA_DIST = \
data \
data-mixed \
printing_sample \
test_data \
test_data2 \
test_data_nans\
test_data_fixed_width \
amash_vote_analysis.csv \
numacc4.dat \
pontius.dat \
wampler1.dat \
faith.data \
sort_tests.c
EXTRA_DIST = \
Readme \
$(DATA_DIST)
CLEANFILES = \
ff.db \
runs.db \
td.db \
draws-k \
draws-k2 \
draws-mvN \
draws-N \
draws-std_multinormal \
draws-std_normal \
the_data.txt \
print_test.out \
xxx
|