Changeset ae6d28 in git
- Timestamp:
- May 19, 2011, 5:51:16 AM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- 75ddacf89c11403a22f95c5c832d61d939a24b33
- Parents:
- c8204aefe85bd27523a76a77f4ae555c156bdc21
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-05-19 05:51:16+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:09+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/tests/polys_test.h
rc8204a rae6d28 192 192 void Test(const ring r) 193 193 { 194 TestSum( r, 10 ); 195 TestSum( r, 100 ); 196 TestSum( r, 101 ); 197 TestSum( r, 1001 ); 198 TestSum( r, 9000 ); 194 if( r == NULL ) 195 TS_FAIL("Could not get needed ring"); 196 else 197 { 198 TestSum( r, 10 ); 199 TestSum( r, 100 ); 200 TestSum( r, 101 ); 201 TestSum( r, 1001 ); 202 TestSum( r, 9000 ); 203 } 199 204 } 200 205 … … 316 321 const coeffs cf = nInitChar( n_GF, ¶m ); 317 322 323 if( cf == NULL ) 324 TS_FAIL("Could not get needed coeff. domain"); 325 318 326 TS_ASSERT_DIFFERS( cf, NULLp ); 319 327 … … 375 383 376 384 const coeffs cf = nInitChar(type, &extParam); // Q[a]/<a2+1> 385 386 if( cf == NULL ) 387 TS_FAIL("Could not get needed coeff. domain"); 377 388 378 389 TS_ASSERT_DIFFERS( cf->cfCoeffWrite, NULLp ); 390 391 379 392 380 393 if( cf->cfCoeffWrite != NULL )
Note: See TracChangeset
for help on using the changeset viewer.