1
1

Ensure that the output is printed

This commit was SVN r5173.
Этот коммит содержится в:
Jeff Squyres 2005-04-05 02:32:57 +00:00
родитель 447201de15
Коммит 394be4e6cb

Просмотреть файл

@ -61,6 +61,7 @@ FILE *test_out;
int main (int argc, char* argv[]) int main (int argc, char* argv[])
{ {
int ret;
test_init("orte_dps"); test_init("orte_dps");
test_out = stderr; test_out = stderr;
@ -189,8 +190,9 @@ int main (int argc, char* argv[])
test_failure("orte_dps test14 failed"); test_failure("orte_dps test14 failed");
} }
ret = test_finalize();
fclose(test_out); fclose(test_out);
return test_finalize(); return ret;
} }
static bool test1(void) /* verify different buffer inits */ static bool test1(void) /* verify different buffer inits */