| 338 | |
| 339 | |
| 340 | int main( int, char *argv[] ) |
| 341 | { |
| 342 | assume( sizeof(long) == SIZEOF_LONG ); |
| 343 | |
| 344 | if( sizeof(long) != SIZEOF_LONG ) |
| 345 | { |
| 346 | WerrorS("Bad config.h: wrong size of long!"); |
| 347 | |
| 348 | return(1); |
| 349 | } |
| 350 | |
| 351 | |
| 352 | feInitResources(argv[0]); |
| 353 | |
| 354 | StringSetS("resources in use (as reported by feStringAppendResources(0):\n"); |
| 355 | feStringAppendResources(0); |
| 356 | |
| 357 | PrintLn(); |
| 358 | { char* s = StringEndS(); PrintS(s); omFree(s); } |
| 359 | |
| 360 | TestGBEngine(); |
| 361 | TestSimpleRingArithmetcs(); |
| 362 | |
| 363 | return 0; |
| 364 | } |
nothing calls this directly
no test coverage detected