]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: Fix test for global var
authorfennecdjay <astor.jeremie@wanadoo.fr>
Sat, 8 Jun 2019 09:09:06 +0000 (11:09 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Sat, 8 Jun 2019 09:09:06 +0000 (11:09 +0200)
tests/import/global_var.c
tests/import/static_string.c

index 221e98d660ef89bd3acb631978ff4a0e4f5e75d2..ba04afb815feb372b0ca7b4e712ff3ddc8a3f2bb 100644 (file)
@@ -13,8 +13,9 @@
 
 GWION_IMPORT(global_var_test) {
 //  ALLOC_PTR(i, m_uint, 1);
-  const M_Object i = gwion_new_string(gwi->gwion, "test");
+  const M_Object obj = new_object(gwi->gwion->mp, NULL, t_string);
+  STRING(obj) = s_name(insert_symbol(gwi->gwion->st, "test"));
   CHECK_BB(gwi_item_ini(gwi,"string", "i"))
-  CHECK_BB(gwi_item_end(gwi, 0, i))
+  CHECK_BB(gwi_item_end(gwi, 0, obj))
   return GW_OK;
 }
index 486d0563fb14275336f9e48ccc6fe6c77fadfe94..879eb4513368200e9c820bbb717ae3496ca67f85 100644 (file)
@@ -12,9 +12,9 @@
 #include "gwi.h"
 
 GWION_IMPORT(static_string_test) {
-  const M_Object obj = gwion_new_string(gwi->gwion, "test static string");
+  const M_Object obj = new_object(gwi->gwion->mp, NULL, t_string);
+  STRING(obj) = s_name(insert_symbol(gwi->gwion->st, "test static string"));
   CHECK_BB(gwi_item_ini(gwi, "string", "self"))
-//  CHECK_BB(gwi_item_end(gwi, ae_flag_global, obj))
-  CHECK_BB(gwi_item_end(gwi, 0, obj))
+  CHECK_BB(gwi_item_end(gwi, ae_flag_global, obj))
   return GW_OK;
 }