summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2013-11-08 13:56:06 +0000
committerJérémy Zurcher <jeremy@asynk.ch>2014-01-03 16:22:19 +0100
commitf0c88fbe97956e5c6bd7d8c696beda7440cfd3a6 (patch)
tree2a24e9178d208f5e1c963fe247ddc9a9470d7f6b
parent324d35c3312e696437f18fd97b307d232c53f947 (diff)
downloadefl-f0c88fbe97956e5c6bd7d8c696beda7440cfd3a6.tar.gz
eo2 suite: add an important FIXME.
-rw-r--r--src/tests/eo/suite/eo_test_general.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/eo/suite/eo_test_general.c b/src/tests/eo/suite/eo_test_general.c
index d2bface3e4..a942cc887c 100644
--- a/src/tests/eo/suite/eo_test_general.c
+++ b/src/tests/eo/suite/eo_test_general.c
@@ -595,7 +595,7 @@ START_TEST(eo_magic_checks)
ck_assert_int_ne(i, a);
eo2_do_super(obj, (const Eo_Class *) buf, simple_a_set(++i));
eo2_do_super(obj, (const Eo_Class *) buf, a = simple_a_get());
- ck_assert_int_ne(i, a);
+ ck_assert_int_ne(i, a); // FIXME Jeremy: shouldn't happen. do_super should check for class validity and fail!
fail_if(eo_class_get((Eo *) buf));
fail_if(eo_class_name_get((Eo_Class*) buf));
fail_if(eo_class_get(obj) != SIMPLE_CLASS);