Eo: Remove useless test.
authorTom Hacohen <tom@stosb.com>
Thu, 19 May 2016 10:48:36 +0000 (11:48 +0100)
committerTom Hacohen <tom@stosb.com>
Fri, 20 May 2016 09:25:00 +0000 (10:25 +0100)
We no longer have a call stack, so there's no need to have
this test.

src/tests/eo/suite/eo_test_general.c

index 959247d..65d9ae2 100644 (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);