Changeset 8841 for trunk/psLib/test
- Timestamp:
- Sep 19, 2006, 2:18:12 PM (20 years ago)
- Location:
- trunk/psLib/test
- Files:
-
- 25 edited
-
astro/Makefile.am (modified) (1 diff)
-
db/Makefile.am (modified) (1 diff)
-
fft/Makefile.am (modified) (1 diff)
-
fits/Makefile.am (modified) (1 diff)
-
imageops/Makefile.am (modified) (1 diff)
-
jpeg/Makefile.am (modified) (1 diff)
-
math/Makefile.am (modified) (1 diff)
-
mathtypes/Makefile.am (modified) (1 diff)
-
mathtypes/tap_psVector.c (modified) (1 diff)
-
pstap/src/Makefile.am (modified) (1 diff)
-
sys/Makefile.am (modified) (1 diff)
-
sys/tap_psStringSubstitute.c (modified) (1 diff)
-
tap/configure.in (modified) (1 diff)
-
tap/src/Makefile.am (modified) (1 diff)
-
types/Makefile.am (modified) (2 diffs)
-
types/tap_psListIterator.c (modified) (1 diff)
-
types/tap_psMetadataConfigRead.c (modified) (1 diff)
-
types/tap_psMetadataItemParse.c (modified) (1 diff)
-
types/tap_psMetadataIterator.c (modified) (1 diff)
-
types/tap_psMetadata_copying.c (modified) (1 diff)
-
types/tap_psMetadata_creating.c (modified) (1 diff)
-
types/tap_psMetadata_manip.c (modified) (1 diff)
-
types/tap_psMetadata_polynomials.c (modified) (1 diff)
-
types/tap_psMetadata_printing.c (modified) (1 diff)
-
xml/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/astro/Makefile.am
r8718 r8841 13 13 test.ser7.dat 14 14 15 check_PROGRAMS = 15 TEST_PROGS = 16 17 if BUILD_TESTS 18 bin_PROGRAMS = $(TEST_PROGS) 19 else 20 check_PROGRAMS = $(TEST_PROGS) 21 endif 22 TESTS = $(TEST_PROGS) 16 23 17 24 CLEANFILES = $(check_DATA) temp/* core core.* *~ *.bb *.bbg *.da gmon.out -
trunk/psLib/test/db/Makefile.am
r8718 r8841 5 5 $(PSLIB_LIBS) 6 6 7 check_PROGRAMS = 7 TEST_PROGS = 8 9 if BUILD_TESTS 10 bin_PROGRAMS = $(TEST_PROGS) 11 else 12 check_PROGRAMS = $(TEST_PROGS) 13 endif 14 TESTS = $(TEST_PROGS) 8 15 9 16 CLEANFILES = $(check_DATA) temp/* core core.* *~ *.bb *.bbg *.da gmon.out -
trunk/psLib/test/fft/Makefile.am
r8718 r8841 5 5 $(PSLIB_LIBS) 6 6 7 check_PROGRAMS = 7 TEST_PROGS = 8 9 if BUILD_TESTS 10 bin_PROGRAMS = $(TEST_PROGS) 11 else 12 check_PROGRAMS = $(TEST_PROGS) 13 endif 14 TESTS = $(TEST_PROGS) 8 15 9 16 CLEANFILES = $(check_DATA) temp/* core core.* *~ *.bb *.bbg *.da gmon.out -
trunk/psLib/test/fits/Makefile.am
r8718 r8841 5 5 $(PSLIB_LIBS) 6 6 7 check_PROGRAMS = 7 TEST_PROGS = 8 9 if BUILD_TESTS 10 bin_PROGRAMS = $(TEST_PROGS) 11 else 12 check_PROGRAMS = $(TEST_PROGS) 13 endif 14 TESTS = $(TEST_PROGS) 8 15 9 16 CLEANFILES = $(check_DATA) temp/* multi.fits table.fits tmpImages/* core core.* *~ \ -
trunk/psLib/test/imageops/Makefile.am
r8718 r8841 5 5 $(PSLIB_LIBS) 6 6 7 check_PROGRAMS = 7 TEST_PROGS = 8 9 if BUILD_TESTS 10 bin_PROGRAMS = $(TEST_PROGS) 11 else 12 check_PROGRAMS = $(TEST_PROGS) 13 endif 14 TESTS = $(TEST_PROGS) 8 15 9 16 CLEANFILES = $(check_DATA) temp/* fOut.fits sOut.fits fBiOut.fits sBiOut.fits \ -
trunk/psLib/test/jpeg/Makefile.am
r8718 r8841 5 5 $(PSLIB_LIBS) 6 6 7 check_PROGRAMS = 7 TEST_PROGS = 8 9 if BUILD_TESTS 10 bin_PROGRAMS = $(TEST_PROGS) 11 else 12 check_PROGRAMS = $(TEST_PROGS) 13 endif 14 TESTS = $(TEST_PROGS) 8 15 9 16 CLEANFILES = $(check_DATA) core core.* *~ *.bb *.bbg *.da gmon.out -
trunk/psLib/test/math/Makefile.am
r8718 r8841 5 5 $(PSLIB_LIBS) 6 6 7 check_PROGRAMS = 7 TEST_PROGS = 8 9 if BUILD_TESTS 10 bin_PROGRAMS = $(TEST_PROGS) 11 else 12 check_PROGRAMS = $(TEST_PROGS) 13 endif 14 TESTS = $(TEST_PROGS) 8 15 9 16 CLEANFILES = $(check_DATA) temp/* seed_msglog1.txt core core.* *~ *.bb *.bbg *.da gmon.out -
trunk/psLib/test/mathtypes/Makefile.am
r8731 r8841 10 10 $(PSLIB_LIBS) 11 11 12 check_PROGRAMS = \12 TEST_PROGS = \ 13 13 tap_psVector 14 15 if BUILD_TESTS 16 bin_PROGRAMS = $(TEST_PROGS) 17 else 18 check_PROGRAMS = $(TEST_PROGS) 19 endif 20 TESTS = $(TEST_PROGS) 14 21 15 22 CLEANFILES = $(check_DATA) temp/* core core.* *~ *.bb *.bbg *.da gmon.out -
trunk/psLib/test/mathtypes/tap_psVector.c
r8791 r8841 1 1 #include <stdio.h> 2 #include <string.h> 2 3 #include <pslib.h> 3 4 -
trunk/psLib/test/pstap/src/Makefile.am
r8731 r8841 5 5 $(PSLIB_LIBS) 6 6 7 TEST_LTLIBS = libpstap.la 8 libpstap_la_SOURCES = pstap.c 7 9 noinst_HEADERS = pstap.h 8 check_LTLIBRARIES = libpstap.la9 10 10 libpstap_la_SOURCES = pstap.c 11 if BUILD_TESTS 12 lib_LTLIBRARIES = $(TEST_LTLIBS) 13 else 14 check_LTLIBRARIES = $(TEST_LTLIBS) 15 endif 16 -
trunk/psLib/test/sys/Makefile.am
r8731 r8841 10 10 $(PSLIB_LIBS) 11 11 12 TEST_PROGS = \ 13 tap_psStringSubstitute 12 14 13 check_PROGRAMS = \ 14 tap_psStringSubstitute 15 if BUILD_TESTS 16 bin_PROGRAMS = $(TEST_PROGS) 17 else 18 check_PROGRAMS = $(TEST_PROGS) 19 endif 20 TESTS = $(TEST_PROGS) 15 21 16 22 CLEANFILES = $(check_DATA) temp/* log.txt log2.txt test.fits tst_psTrace02_OUT \ -
trunk/psLib/test/sys/tap_psStringSubstitute.c
r8791 r8841 1 1 #include <stdio.h> 2 #include <string.h> 2 3 #include <pslib.h> 3 4 -
trunk/psLib/test/tap/configure.in
r7862 r8841 17 17 ;; 18 18 esac 19 20 dnl build tests at the same time as the source code 21 AC_ARG_ENABLE(tests, 22 [AS_HELP_STRING(--enable-tests,build tests at same time as source)], 23 [AC_MSG_RESULT(test building enabled) 24 tests=true], 25 [tests=false]) 26 AM_CONDITIONAL(BUILD_TESTS, test x$tests = xtrue) 19 27 20 28 # Checks for header files -
trunk/psLib/test/tap/src/Makefile.am
r8731 r8841 1 check_LTLIBRARIES = libtap.la1 TEST_LTLIBS = libtap.la 2 2 libtap_la_SOURCES = tap.c tap.h 3 include_HEADERS = tap.h 4 5 if BUILD_TESTS 6 lib_LTLIBRARIES = $(TEST_LTLIBS) 7 else 8 check_LTLIBRARIES = $(TEST_LTLIBS) 9 endif 3 10 4 11 man_MANS = tap.3 5 12 EXTRA_DIST = $(man_MANS) 6 13 7 include_HEADERS = tap.h -
trunk/psLib/test/types/Makefile.am
r8814 r8841 11 11 AM_CFLAGS = -DXML_CONFIG_FILE="\"$(top_srcdir)/etc/pslib/psTime.xml\"" 12 12 13 check_PROGRAMS = \13 TEST_PROGS = \ 14 14 tap_psMetadataIterator \ 15 15 tap_psListIterator \ … … 25 25 tap_psArray_all \ 26 26 tap_psArguments_all 27 28 if BUILD_TESTS 29 bin_PROGRAMS = $(TEST_PROGS) 30 else 31 check_PROGRAMS = $(TEST_PROGS) 32 endif 33 TESTS = $(TEST_PROGS) 27 34 28 35 check_DATA = \ -
trunk/psLib/test/types/tap_psListIterator.c
r8786 r8841 1 1 #include <stdio.h> 2 #include <string.h> 2 3 #include <pslib.h> 3 4 -
trunk/psLib/test/types/tap_psMetadataConfigRead.c
r8775 r8841 1 1 #include <stdio.h> 2 #include <string.h> 2 3 #include <pslib.h> 3 4 -
trunk/psLib/test/types/tap_psMetadataItemParse.c
r8731 r8841 1 1 #include <pslib.h> 2 #include <string.h> 2 3 3 4 #include "tap.h" -
trunk/psLib/test/types/tap_psMetadataIterator.c
r8731 r8841 1 1 #include <stdio.h> 2 #include <string.h> 2 3 #include <pslib.h> 3 4 -
trunk/psLib/test/types/tap_psMetadata_copying.c
r8731 r8841 12 12 13 13 #include <pslib.h> 14 #include <string.h> 14 15 15 16 #include "tap.h" -
trunk/psLib/test/types/tap_psMetadata_creating.c
r8786 r8841 14 14 15 15 #include <pslib.h> 16 #include <string.h> 16 17 17 18 #include "tap.h" -
trunk/psLib/test/types/tap_psMetadata_manip.c
r8731 r8841 12 12 13 13 #include <pslib.h> 14 #include <string.h> 14 15 15 16 #include "tap.h" -
trunk/psLib/test/types/tap_psMetadata_polynomials.c
r8786 r8841 12 12 13 13 #include <pslib.h> 14 #include <string.h> 14 15 15 16 #include "tap.h" -
trunk/psLib/test/types/tap_psMetadata_printing.c
r8731 r8841 11 11 */ 12 12 13 #include <stdio.h> 14 #include <string.h> 13 15 #include <fcntl.h> 14 16 #include <pslib.h> -
trunk/psLib/test/xml/Makefile.am
r8718 r8841 5 5 $(PSLIB_LIBS) 6 6 7 check_PROGRAMS = 7 TEST_PROGS = 8 9 if BUILD_TESTS 10 bin_PROGRAMS = $(TEST_PROGS) 11 else 12 check_PROGRAMS = $(TEST_PROGS) 13 endif 14 TESTS = $(TEST_PROGS) 8 15 9 16 EXTRA_DIST = psTime.xml psTime2.xml psTime3.xml psTime4.xml
Note:
See TracChangeset
for help on using the changeset viewer.
