Eo: Remove useless test.

We no longer have a call stack, so there's no need to have
this test.
This commit is contained in:
Tom Hacohen 2016-05-19 11:48:36 +01:00
parent 4f43c27450
commit b5511464a1
1 changed files with 0 additions and 15 deletions

View File

@ -50,20 +50,6 @@ START_TEST(eo_singleton)
}
END_TEST
START_TEST(eo_stack)
{
eo_init();
Eo *obj = eo_add(SIMPLE_CLASS, NULL);
fail_if(!obj);
simple_recursive(obj, 123);
eo_unref(obj);
eo_shutdown();
}
END_TEST
static int _eo_signals_cb_current = 0;
static int _eo_signals_cb_flag = 0;
@ -1192,7 +1178,6 @@ void eo_test_general(TCase *tc)
{
tcase_add_test(tc, eo_simple);
tcase_add_test(tc, eo_singleton);
tcase_add_test(tc, eo_stack);
tcase_add_test(tc, eo_signals);
tcase_add_test(tc, eo_data_fetch);
tcase_add_test(tc, eo_isa_tests);