summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2016-05-19 11:48:36 +0100
committerTom Hacohen <tom@stosb.com>2016-05-20 10:25:00 +0100
commitb5511464a1d712db9b385b03bb137174d58efb1a (patch)
tree3e1fb7cb8b6f825fabc9ca475fc48b155f57397a
parent4f43c2745053814f26a75b7c5530279fabc9a132 (diff)
downloadefl-b5511464a1d712db9b385b03bb137174d58efb1a.tar.gz
Eo: Remove useless test.
We no longer have a call stack, so there's no need to have this test.
-rw-r--r--src/tests/eo/suite/eo_test_general.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/tests/eo/suite/eo_test_general.c b/src/tests/eo/suite/eo_test_general.c
index 959247d7de..65d9ae2437 100644
--- a/src/tests/eo/suite/eo_test_general.c
+++ b/src/tests/eo/suite/eo_test_general.c
@@ -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);