Changeset 7808 for trunk/psLib/test/mathtypes
- Timestamp:
- Jul 3, 2006, 4:43:38 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/mathtypes/tap_psVector.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/mathtypes/tap_psVector.c
r7806 r7808 161 161 ok(psVec != NULL, "test vector extended"); 162 162 skip_start(psVec == NULL, 2, "Skipping 2 tests because psVectorExtend() failed"); 163 ok(psVec->nalloc == 5, "Vector size = %ld", psVec->nalloc);163 ok(psVec->nalloc == 15, "Vector size = %ld", psVec->nalloc); 164 164 ok(psVec->n == 4,"Vector population = %ld", psVec->n); 165 165 skip_end(); … … 176 176 ok(psVec != NULL, "test vector extended"); 177 177 skip_start(psVec == NULL, 2, "Skipping 2 tests because psVectorExtend() failed"); 178 ok(psVec->nalloc == 5 ,"Vector size = %ld", psVec->nalloc);178 ok(psVec->nalloc == 15 ,"Vector size = %ld", psVec->nalloc); 179 179 ok(psVec->n == 2, "Vector population = %ld", psVec->n); 180 180 skip_end(); … … 192 192 ok(psVec != NULL, "test vector extended"); 193 193 skip_start(psVec == NULL, 2, "Skipping 2 tests because psVectorExtend() failed"); 194 ok(psVec->nalloc == 5, "Vector size = %ld", psVec->nalloc);194 ok(psVec->nalloc == 15, "Vector size = %ld", psVec->nalloc); 195 195 ok(psVec->n == 0, "Vector population = %ld", psVec->n); 196 196 skip_end(); … … 375 375 psVector *vec = psVectorAlloc(5, PS_TYPE_S32); 376 376 377 ok(psVectorSet(vec, 1, 4) ,377 ok(psVectorSet(vec, 1, 4) == true, 378 378 "VectorSet set S32 at position 1"); 379 379
Note:
See TracChangeset
for help on using the changeset viewer.
