Changeset 8731
- Timestamp:
- Sep 1, 2006, 2:41:47 PM (20 years ago)
- Location:
- trunk/psLib
- Files:
-
- 6 added
- 1 deleted
- 19 edited
-
configure.ac (modified) (1 diff)
-
src/pstap.h (deleted)
-
test/Makefile.am (modified) (1 diff)
-
test/mathtypes/Makefile.am (modified) (1 diff)
-
test/mathtypes/tap_psVector.c (modified) (1 diff)
-
test/pstap (added)
-
test/pstap/Makefile.am (added)
-
test/pstap/src (added)
-
test/pstap/src/Makefile.am (added)
-
test/pstap/src/pstap.c (added)
-
test/pstap/src/pstap.h (added)
-
test/sys/Makefile.am (modified) (1 diff)
-
test/sys/tap_psStringSubstitute.c (modified) (1 diff)
-
test/tap/src/Makefile.am (modified) (1 diff)
-
test/types/Makefile.am (modified) (1 diff)
-
test/types/tap_psArray_all.c (modified) (1 diff)
-
test/types/tap_psListIterator.c (modified) (1 diff)
-
test/types/tap_psMetadataConfigParse.c (modified) (1 diff)
-
test/types/tap_psMetadataItemCompare.c (modified) (1 diff)
-
test/types/tap_psMetadataItemParse.c (modified) (1 diff)
-
test/types/tap_psMetadataIterator.c (modified) (1 diff)
-
test/types/tap_psMetadata_copying.c (modified) (1 diff)
-
test/types/tap_psMetadata_creating.c (modified) (1 diff)
-
test/types/tap_psMetadata_manip.c (modified) (1 diff)
-
test/types/tap_psMetadata_polynomials.c (modified) (1 diff)
-
test/types/tap_psMetadata_printing.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/configure.ac
r7869 r8731 415 415 test/xml/Makefile 416 416 test/FullUnitTest 417 test/pstap/Makefile 418 test/pstap/src/Makefile 417 419 etc/pslib/Makefile 418 420 etc/Makefile -
trunk/psLib/test/Makefile.am
r8719 r8731 1 SUBDIRS = tap $(SRCDIRS)1 SUBDIRS = tap pstap $(SRCDIRS) 2 2 3 3 TESTS = test.pl -
trunk/psLib/test/mathtypes/Makefile.am
r8718 r8731 1 AM_CPPFLAGS = $(SRCINC) -I$(top_srcdir)/test/tap/src $(PSLIB_CFLAGS) 1 AM_CPPFLAGS = \ 2 $(SRCINC) \ 3 -I$(top_srcdir)/test/tap/src \ 4 -I$(top_srcdir)/test/pstap/src \ 5 $(PSLIB_CFLAGS) 2 6 AM_LDFLAGS = \ 3 7 $(top_builddir)/src/libpslib.la \ 4 8 $(top_builddir)/test/tap/src/libtap.la \ 9 $(top_builddir)/test/pstap/src/libpstap.la \ 5 10 $(PSLIB_LIBS) 6 11 -
trunk/psLib/test/mathtypes/tap_psVector.c
r8230 r8731 1 1 #include <stdio.h> 2 2 #include <pslib.h> 3 3 4 #include "tap.h" 5 #include "pstap.h" 4 6 5 7 int main (void) -
trunk/psLib/test/sys/Makefile.am
r8718 r8731 1 AM_CPPFLAGS = $(SRCINC) -I$(top_srcdir)/test/tap/src $(PSLIB_CFLAGS) 1 AM_CPPFLAGS = \ 2 $(SRCINC) \ 3 -I$(top_srcdir)/test/tap/src \ 4 -I$(top_srcdir)/test/pstap/src \ 5 $(PSLIB_CFLAGS) 2 6 AM_LDFLAGS = \ 3 7 $(top_builddir)/src/libpslib.la \ 4 8 $(top_builddir)/test/tap/src/libtap.la \ 9 $(top_builddir)/test/pstap/src/libpstap.la \ 5 10 $(PSLIB_LIBS) 11 6 12 7 13 check_PROGRAMS = \ -
trunk/psLib/test/sys/tap_psStringSubstitute.c
r8706 r8731 1 1 #include <stdio.h> 2 2 #include <pslib.h> 3 3 4 #include "tap.h" 5 #include "pstap.h" 4 6 5 7 #define ORIGINAL "This is, a, test case, to check." 6 8 #define CORRECTED "This is a test case to check." 7 #define mem() ok(psMemCheckLeaks(psMemGetLastId(), NULL, stdout, false) == 0, "Memory Leaks")8 9 9 10 int main (void) -
trunk/psLib/test/tap/src/Makefile.am
r7775 r8731 1 lib_LTLIBRARIES = libtap.la1 check_LTLIBRARIES = libtap.la 2 2 libtap_la_SOURCES = tap.c tap.h 3 3 -
trunk/psLib/test/types/Makefile.am
r8718 r8731 1 AM_CPPFLAGS = $(SRCINC) -I$(top_srcdir)/test/tap/src $(PSLIB_CFLAGS) 1 AM_CPPFLAGS = \ 2 $(SRCINC) \ 3 -I$(top_srcdir)/test/tap/src \ 4 -I$(top_srcdir)/test/pstap/src \ 5 $(PSLIB_CFLAGS) 2 6 AM_LDFLAGS = \ 3 7 $(top_builddir)/src/libpslib.la \ 4 8 $(top_builddir)/test/tap/src/libtap.la \ 9 $(top_builddir)/test/pstap/src/libpstap.la \ 5 10 $(PSLIB_LIBS) 6 11 AM_CFLAGS = -DXML_CONFIG_FILE="\"$(top_srcdir)/etc/pslib/psTime.xml\"" -
trunk/psLib/test/types/tap_psArray_all.c
r8719 r8731 12 12 */ 13 13 14 #include <pslib.h> 15 16 #include "tap.h" 14 17 #include "pstap.h" 15 18 -
trunk/psLib/test/types/tap_psListIterator.c
r8719 r8731 1 1 #include <stdio.h> 2 2 #include <pslib.h> 3 3 4 #include "tap.h" 5 #include "pstap.h" 4 6 5 7 #define STRING1 "This is string #1" -
trunk/psLib/test/types/tap_psMetadataConfigParse.c
r7948 r8731 1 1 #include <stdio.h> 2 2 #include <pslib.h> 3 3 4 #include "tap.h" 5 #include "pstap.h" 4 6 5 7 #define FILENAME "tap_psMetadataConfigParse.config" -
trunk/psLib/test/types/tap_psMetadataItemCompare.c
r8678 r8731 1 1 #include <pslib.h> 2 3 #include "tap.h" 2 4 #include "pstap.h" 3 5 -
trunk/psLib/test/types/tap_psMetadataItemParse.c
r8414 r8731 1 1 #include <pslib.h> 2 3 #include "tap.h" 2 4 #include "pstap.h" 3 5 -
trunk/psLib/test/types/tap_psMetadataIterator.c
r7918 r8731 1 1 #include <stdio.h> 2 2 #include <pslib.h> 3 3 4 #include "tap.h" 5 #include "pstap.h" 4 6 5 7 -
trunk/psLib/test/types/tap_psMetadata_copying.c
r8719 r8731 11 11 */ 12 12 13 #include <pslib.h> 14 15 #include "tap.h" 13 16 #include "pstap.h" 14 17 -
trunk/psLib/test/types/tap_psMetadata_creating.c
r8719 r8731 13 13 */ 14 14 15 #include <pslib.h> 16 17 #include "tap.h" 15 18 #include "pstap.h" 16 19 -
trunk/psLib/test/types/tap_psMetadata_manip.c
r8719 r8731 11 11 */ 12 12 13 #include <pslib.h> 14 15 #include "tap.h" 13 16 #include "pstap.h" 14 17 -
trunk/psLib/test/types/tap_psMetadata_polynomials.c
r8719 r8731 11 11 */ 12 12 13 #include <pslib.h> 14 15 #include "tap.h" 13 16 #include "pstap.h" 14 17 -
trunk/psLib/test/types/tap_psMetadata_printing.c
r8719 r8731 12 12 13 13 #include <fcntl.h> 14 #include <pslib.h> 15 16 #include "tap.h" 14 17 #include "pstap.h" 15 18
Note:
See TracChangeset
for help on using the changeset viewer.
