Changeset 13124 for trunk/psLib/test/math/tap_psPolyFit1D.c
- Timestamp:
- May 1, 2007, 6:20:06 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/math/tap_psPolyFit1D.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/math/tap_psPolyFit1D.c
r11686 r13124 8 8 9 9 XXX: Try null stats. 10 11 XXX: The tests with "Some Vectors NULL" fail as of 2006/12, they had passed12 previously as of 2006/02. They are commented out for now.13 10 *****************************************************************************/ 14 11 #include <stdio.h> … … 352 349 { 353 350 psLogSetFormat("HLNM"); 354 psTraceSetLevel(".", 0); 355 psTraceSetLevel("psVectorClipFitPolynomial1D", 0); 356 psTraceSetLevel("VectorFitPolynomial1DOrd", 0); 357 psTraceSetLevel("VectorFitPolynomial1DCheb", 0); 358 psTraceSetLevel("vectorFitPolynomial1DCheb", 0); 359 psTraceSetLevel("vectorFitPolynomial1DChebSlow", 0); 360 psTraceSetLevel("vectorFitPolynomial1DChebFast", 0); 361 psTraceSetLevel("psVectorFitPolynomial1D", 0); 362 psTraceSetLevel("p_psCreateChebyshevPolys", 0); 363 351 psLogSetLevel(PS_LOG_INFO); 364 352 plan_tests(64); 365 353 … … 368 356 // 369 357 // All Vectors non-NULL 370 371 358 ok(genericTest(TS00_MASK_U8 | TS00_FERR_F32 | TS00_X_F32 | TS00_F_F32 | TS00_POLY_ORD, POLY_ORDER, NUM_DATA, true), "F32 tests: Ordinary polys, non-clip fit"); 372 359 // Some Vectors NULL … … 382 369 ok(genericTest(TS00_MASK_U8 | TS00_FERR_F32 | TS00_X_S32 | TS00_F_F32 | TS00_POLY_ORD, POLY_ORDER, NUM_DATA, false), "F32 tests: Ordinary polys, non-clip fit, Unallowable vector types"); 383 370 ok(genericTest(TS00_MASK_U8 | TS00_FERR_F32 | TS00_X_F32 | TS00_F_S32 | TS00_POLY_ORD, POLY_ORDER, NUM_DATA, false), "F32 tests: Ordinary polys, non-clip fit, Unallowable vector types"); 384 385 371 // Mismatch vector types 386 372 ok(genericTest(TS00_MASK_S32 | TS00_FERR_F32 | TS00_X_F32 | TS00_F_F32 | TS00_POLY_ORD, POLY_ORDER, NUM_DATA, false), "F32 tests: Ordinary polys, non-clip fit, Mismatch vector types"); … … 392 378 // 393 379 // All Vectors non-NULL 394 395 380 ok(genericTest(TS00_MASK_U8 | TS00_FERR_F64 | TS00_X_F64 | TS00_F_F64 | TS00_POLY_ORD, POLY_ORDER, NUM_DATA, true), "F64 tests: Ordinary polys, non-clip fit"); 396 381 // Some Vectors NULL
Note:
See TracChangeset
for help on using the changeset viewer.
