diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-09-18 13:33:05 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-25 14:36:46 +0200 |
commit | ab0c5259e5a3238e176e4b1aed942f5384a2d0c6 (patch) | |
tree | 20111eefcafa13d92485ba6a0738c480f5c0c319 /tests | |
parent | 7028a74894eba649beb9e1881dabaf94a29961a0 (diff) |
Fix leak on parse failure
Diffstat (limited to 'tests')
-rw-r--r-- | tests/glfw.amal | 2 | ||||
-rw-r--r-- | tests/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/glfw.amal b/tests/glfw.amal index d0f02d4..e3c2fc6 100644 --- a/tests/glfw.amal +++ b/tests/glfw.amal @@ -1,3 +1,5 @@ +#!/usr/bin/env amalgam + extern const glfwInit: fn() i32; extern const glfwTerminate: fn() i32; // should return void.... extern const glfwCreateWindow: fn(x: i32, y: i32, title: str, monitor: usize, share: usize) usize; diff --git a/tests/main.c b/tests/main.c index 265a0ea..019f8d9 100644 --- a/tests/main.c +++ b/tests/main.c @@ -190,8 +190,6 @@ static void test_load_gl(void) { FAIL_TEST_CLEANUP(full_path); } - printf("glfw init ptr: %p, glfw terminate: %p\n", glfwInit, glfwTerminate); - if(amal_program_register_extern_func(&program, create_buffer_view_auto("glfwInit"), glfwInit, 0) != 0) { fprintf(stderr, "Unexpected error (alloc failure)\n"); FAIL_TEST_CLEANUP(full_path); |