From: Michal Sojka Date: Fri, 18 Feb 2011 23:27:42 +0000 (+0100) Subject: forb: Destroy forb at the end of executor_test X-Git-Url: https://rtime.felk.cvut.cz/gitweb/frescor/forb.git/commitdiff_plain/7093b421378368deec15a04cd2ef77d51a66cee1?hp=0b6182ef98e8923edcfa11687ba4900472c91c63 forb: Destroy forb at the end of executor_test This make wvtest happy because it closes all the file descriptors that were open by FORB so the final check in wvmain passes. Now, all wvtests passes! --- diff --git a/src/tests/executor/executor_test.c b/src/tests/executor/executor_test.c index 2049a5c..223852a 100644 --- a/src/tests/executor/executor_test.c +++ b/src/tests/executor/executor_test.c @@ -107,4 +107,6 @@ WVTEST_MAIN("inter_thread_invocation") /* Direct invocation in the same executor: (application->)executor->executor */ WVPASSEQ(executor_test_add_indirect(testobj1, testobj1, 1, &env), 2); WVFAIL(forb_exception_occurred(&env)); + + forb_destroy(orb); }