diff -r f600b0d1fc5d -r cf332d440466 test/harness/loupe-test.c --- a/test/harness/loupe-test.c Fri Jan 27 10:30:16 2012 +0000 +++ b/test/harness/loupe-test.c Fri Jan 27 23:59:51 2012 +0000 @@ -1,6 +1,7 @@ #include #include #include +#include #include #include "testcase.h" #include "testcaseio.h" @@ -9,10 +10,10 @@ * Returns FALSE if the test should be considered to have failed. * (returns TRUE on pass or expected-fail). */ -boolean run_test(const char *filename) +gboolean run_test(const char *filename) { Testcase *testcase; - boolean retval; + gboolean retval; testcase=testcase_parse_file(filename); if (!testcase) return FALSE; @@ -24,7 +25,7 @@ int main(int argc,char **argv) { int i; - boolean pass=TRUE; + gboolean pass=TRUE; for(i=1;i