test: update tests

This commit is contained in:
2026-05-25 17:35:09 +01:00
parent 5e3439bc4a
commit 01cbcf712a
5 changed files with 16 additions and 11 deletions
+2
View File
@@ -20,6 +20,7 @@ static double test_function(int a, double b, int c, ...)
int main(int argc, const char **argv)
{
#if 0
fx_value_type arg_types[] = {
FX_VALUE_TYPE_INT,
FX_VALUE_TYPE_DOUBLE,
@@ -46,5 +47,6 @@ int main(int argc, const char **argv)
fx_value result = FX_VALUE_EMPTY;
int r = fx_function_invoke(func, args, 6, &result);
printf("%lf\n", result.v_double);
#endif
return 0;
}