Changeset 3690 for trunk/psLib/test/collections
- Timestamp:
- Apr 8, 2005, 2:04:58 PM (21 years ago)
- Location:
- trunk/psLib/test/collections
- Files:
-
- 18 added
- 7 edited
-
. (modified) (1 prop)
-
.cvsignore (modified) (1 diff)
-
Makefile.am (modified) (4 diffs)
-
data (added)
-
data/header_1.fits (added)
-
data/header_2.fits (added)
-
data/test.config (added)
-
tst_psHash01.c (modified) (1 diff)
-
tst_psHash02.c (modified) (1 diff)
-
tst_psHash03.c (modified) (1 diff)
-
tst_psHash04.c (modified) (1 diff)
-
verified/tst_psMetadataIO.stderr (added)
-
verified/tst_psMetadataIO.stdout (added)
-
verified/tst_psMetadata_01.stderr (added)
-
verified/tst_psMetadata_01.stdout (added)
-
verified/tst_psMetadata_02.stderr (added)
-
verified/tst_psMetadata_02.stdout (added)
-
verified/tst_psMetadata_03.stderr (added)
-
verified/tst_psMetadata_03.stdout (added)
-
verified/tst_psMetadata_04.stderr (added)
-
verified/tst_psMetadata_04.stdout (added)
-
verified/tst_psMetadata_05.stderr (added)
-
verified/tst_psMetadata_05.stdout (added)
-
verified/tst_psMetadata_06.stdout (added)
-
verified/tst_psMetadata_07.stdout (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/collections
- Property svn:ignore
-
old new 37 37 tst_psArray01 38 38 tst_psScalar 39 tst_psMetadata05_OUT 40 tst_psMetadata_01 41 tst_psMetadata_02 42 tst_psMetadata_03 43 tst_psMetadata_04 44 tst_psMetadata_05 45 tst_psMetadata_06 46 tst_psMetadata_07 47 tst_psMetadataIO 48 header_1.fits 49 header_2.fits 50 test.config
-
- Property svn:ignore
-
trunk/psLib/test/collections/.cvsignore
r3125 r3690 37 37 tst_psArray01 38 38 tst_psScalar 39 tst_psMetadata05_OUT 40 tst_psMetadata_01 41 tst_psMetadata_02 42 tst_psMetadata_03 43 tst_psMetadata_04 44 tst_psMetadata_05 45 tst_psMetadata_06 46 tst_psMetadata_07 47 tst_psMetadataIO 48 header_1.fits 49 header_2.fits 50 test.config -
trunk/psLib/test/collections/Makefile.am
r3684 r3690 1 1 #Makefile for collections functions of psLib 2 2 # 3 EXTRA_DIST = verified 3 EXTRA_DIST = verified \ 4 data/header_1.fits \ 5 data/header_2.fits \ 6 data/test.config 4 7 5 8 INCLUDES = \ … … 14 17 15 18 AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) 19 AM_CFLAGS = -DXML_CONFIG_FILE="\"$(top_srcdir)/etc/pslib/psTime.xml\"" 16 20 17 21 TESTS = \ … … 30 34 tst_psHash04 \ 31 35 tst_psHash05 \ 32 tst_psScalar 36 tst_psScalar \ 37 tst_psMetadataIO \ 38 tst_psMetadata_01 \ 39 tst_psMetadata_02 \ 40 tst_psMetadata_03 \ 41 tst_psMetadata_04 \ 42 tst_psMetadata_05 \ 43 tst_psMetadata_06 \ 44 tst_psMetadata_07 33 45 34 46 check_PROGRAMS =$(TESTS) 35 47 36 check_DATA = 48 check_DATA = test.config \ 49 header_1.fits \ 50 header_2.fits 51 37 52 38 53 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified … … 57 72 tst_psHash05_SOURCES = tst_psHash05.c 58 73 tst_psScalar_SOURCES = tst_psScalar.c 74 tst_psMetadataIO_SOURCES = tst_psMetadataIO.c 75 tst_psMetadata_01_SOURCES = tst_psMetadata_01.c 76 tst_psMetadata_02_SOURCES = tst_psMetadata_02.c 77 tst_psMetadata_03_SOURCES = tst_psMetadata_03.c 78 tst_psMetadata_04_SOURCES = tst_psMetadata_04.c 79 tst_psMetadata_05_SOURCES = tst_psMetadata_05.c 80 tst_psMetadata_06_SOURCES = tst_psMetadata_06.c 81 tst_psMetadata_07_SOURCES = tst_psMetadata_07.c 82 83 test.config: data/test.config 84 cp $? $@ 85 86 header_1.fits: data/header_1.fits 87 cp $? $@ 88 89 header_2.fits: data/header_2.fits 90 cp $? $@ 59 91 60 92 test: check -
trunk/psLib/test/collections/tst_psHash01.c
r3682 r3690 21 21 { 22 22 ID *id = psAlloc(sizeof(ID)); 23 p _psMemSetDeallocator(id,(psFreeFcn)IdFree);23 psMemSetDeallocator(id,(psFreeFcn)IdFree); 24 24 id->name = psStringCopy(name); 25 25 -
trunk/psLib/test/collections/tst_psHash02.c
r3682 r3690 24 24 { 25 25 ID *id = psAlloc(sizeof(ID)); 26 p _psMemSetDeallocator(id,(psFreeFcn)IdFree);26 psMemSetDeallocator(id,(psFreeFcn)IdFree); 27 27 id->name = psStringCopy(name); 28 28 -
trunk/psLib/test/collections/tst_psHash03.c
r3682 r3690 26 26 27 27 id = psAlloc(sizeof(ID)); 28 p _psMemSetDeallocator(id,(psFreeFcn)IdFree);28 psMemSetDeallocator(id,(psFreeFcn)IdFree); 29 29 30 30 id->name = psStringCopy(name); -
trunk/psLib/test/collections/tst_psHash04.c
r3682 r3690 19 19 { 20 20 ID *id = psAlloc(sizeof(ID)); 21 p _psMemSetDeallocator(id,(psFreeFcn)IdFree);21 psMemSetDeallocator(id,(psFreeFcn)IdFree); 22 22 23 23 id->name = psStringCopy(name);
Note:
See TracChangeset
for help on using the changeset viewer.
