equal
deleted
inserted
replaced
1360 |
1360 |
1361 // if --show-tests option is given, only print tests and exit |
1361 // if --show-tests option is given, only print tests and exit |
1362 if(only_print_tests) { |
1362 if(only_print_tests) { |
1363 TestCase *testItem = NULL; |
1363 TestCase *testItem = NULL; |
1364 for(testItem = testCases; testItem; testItem = testItem->next) { |
1364 for(testItem = testCases; testItem; testItem = testItem->next) { |
1365 printf("%s (in %s)\n", testItem->testName, testItem->suiteName); |
1365 printf("%s (in %s) - %s\n", testItem->testName, testItem->suiteName, testItem->description); |
1366 } |
1366 } |
1367 |
1367 |
1368 return 0; |
1368 return 0; |
1369 } |
1369 } |
1370 |
1370 |