diff -r 218904410231 -r f600b0d1fc5d test/harness/gc-test.c --- a/test/harness/gc-test.c Fri Jan 27 00:28:11 2012 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -#include -#include -#include -#include -#include "testcase.h" -#include "testcaseio.h" - -/* - * Returns FALSE if the test should be considered to have failed. - * (returns TRUE on pass or expected-fail). - */ -boolean run_test(const char *filename) -{ - Testcase *testcase; - boolean retval; - testcase=testcase_parse_file(filename); - if (!testcase) - return FALSE; - retval=testcase_run(testcase); - testcase_free(testcase); - return retval; -} - -int main(int argc,char **argv) -{ - int i; - boolean pass=TRUE; - for(i=1;i