X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fautomake.mk;h=8c1bfcfc723100c4e44f88810ab3e42854a675ca;hb=4d688b2e05945b3e3c733a005fb2775110ebb78b;hp=be303c1f368c64857375d41c095555307d60216e;hpb=5c891f46234618f733ed1f3e0be6deedef3e487d;p=pspp-builds.git diff --git a/tests/automake.mk b/tests/automake.mk index be303c1f..8c1bfcfc 100644 --- a/tests/automake.mk +++ b/tests/automake.mk @@ -1,7 +1,7 @@ ## Process this file with automake to produce Makefile.in -*- makefile -*- TESTS_ENVIRONMENT = top_srcdir='$(top_srcdir)' top_builddir='$(top_builddir)' -TESTS_ENVIRONMENT += PERL='@PERL@' +TESTS_ENVIRONMENT += PERL='@PERL@' PG_CONFIG='@PG_CONFIG@' # Allow locale_charset to find charset.alias before running "make install". TESTS_ENVIRONMENT += CHARSETALIASDIR='$(abs_top_builddir)/gl' @@ -105,6 +105,7 @@ dist_TESTS = \ tests/bugs/get.sh \ tests/bugs/examine-1sample.sh \ tests/bugs/examine-missing.sh \ + tests/bugs/examine-missing2.sh \ tests/bugs/freq-nolabels.sh \ tests/bugs/get-no-file.sh \ tests/bugs/html-frequency.sh \ @@ -154,6 +155,10 @@ if GNM_SUPPORT dist_TESTS += tests/command/get-data-gnm.sh endif +if PSQL_SUPPORT +dist_TESTS += tests/command/get-data-psql.sh +endif + nodist_TESTS = \ tests/libpspp/abt-test \ tests/libpspp/bt-test \ @@ -163,6 +168,7 @@ nodist_TESTS = \ tests/libpspp/range-map-test \ tests/libpspp/range-set-test \ tests/libpspp/sparse-array-test \ + tests/libpspp/str-test \ tests/libpspp/tower-test TESTS = $(dist_TESTS) $(nodist_TESTS) @@ -228,6 +234,10 @@ tests_libpspp_range_set_test_SOURCES = \ tests_libpspp_range_set_test_LDADD = gl/libgl.la @LIBINTL@ tests_libpspp_range_set_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10 +tests_libpspp_str_test_SOURCES = \ + tests/libpspp/str-test.c +tests_libpspp_str_test_LDADD = src/libpspp/libpspp.a gl/libgl.la @LIBINTL@ + tests_libpspp_tower_test_SOURCES = \ src/libpspp/abt.c \ src/libpspp/abt.h \ @@ -250,6 +260,13 @@ tests_libpspp_sparse_array_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10 tests_formats_inexactify_SOURCES = tests/formats/inexactify.c +noinst_PROGRAMS += tests/dissect-sysfile +tests_dissect_sysfile_SOURCES = \ + src/libpspp/integer-format.c \ + src/libpspp/float-format.c \ + tests/dissect-sysfile.c +tests_dissect_sysfile_LDADD = gl/libgl.la @LIBINTL@ + EXTRA_DIST += \ $(dist_TESTS) \ tests/Book1.gnm.unzipped \