projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75dd60d
)
elua lib: setup funcs tests
author
Daniel Kolesa
<d.kolesa@osg.samsung.com>
Thu, 16 Apr 2015 14:11:43 +0000
(15:11 +0100)
committer
Daniel Kolesa
<d.kolesa@osg.samsung.com>
Wed, 6 May 2015 14:05:21 +0000
(15:05 +0100)
src/tests/elua/elua_lib.c
patch
|
blob
|
history
diff --git
a/src/tests/elua/elua_lib.c
b/src/tests/elua/elua_lib.c
index 60e068cbc96be468430cf8f3dd8ad33d645ef169..e93707322ceea48d51f5a12e54d7944c46f8779c 100644
(file)
--- a/
src/tests/elua/elua_lib.c
+++ b/
src/tests/elua/elua_lib.c
@@
-9,6
+9,11
@@
#include "Elua.h"
#include "elua_suite.h"
+/* Untestable APIs:
+ *
+ * void elua_state_include_path_add(Elua_State *, const char *);
+ */
+
START_TEST(elua_api)
{
Elua_State *st;
@@
-41,6
+46,10
@@
START_TEST(elua_api)
fail_if(strcmp(elua_state_prog_name_get(st), "test"));
+ fail_if(!elua_state_modules_setup(st));
+ fail_if(!elua_state_i18n_setup(st));
+ fail_if(!elua_state_io_setup(st));
+
elua_state_free(st);
elua_shutdown();