tests/edje: Disable edje mising file test until the needed header is commited.

I tried to get it from Tom's machine but I can't log in there. :)
This commit is contained in:
Stefan Schmidt 2013-02-20 09:11:07 +00:00
parent 1637e99931
commit 251eac7d7a
1 changed files with 4 additions and 2 deletions

View File

@ -9,7 +9,7 @@
#include <Edje.h>
#include "edje_suite.h"
#include "edje_tests_helpers.h"
//#include "edje_tests_helpers.h"
START_TEST(edje_test_edje_init)
{
@ -23,6 +23,7 @@ START_TEST(edje_test_edje_init)
}
END_TEST
#if 0 // Re-enable once the missing header is commited
START_TEST(edje_test_edje_load)
{
Evas *evas = EDJE_TEST_INIT_EVAS();
@ -37,9 +38,10 @@ START_TEST(edje_test_edje_load)
EDJE_TEST_FREE_EVAS();
}
END_TEST
#endif
void edje_test_edje(TCase *tc)
{
tcase_add_test(tc, edje_test_edje_init);
tcase_add_test(tc, edje_test_edje_load);
// tcase_add_test(tc, edje_test_edje_load);
}