From 451797936119d8236843c4e9aee4a47dc5cddd56 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 30 Jun 2024 00:53:34 +0300 Subject: continue working through test cases + Remove overflow and more complicated floating point tests for now --- tests/sqrtr_f.c | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 tests/sqrtr_f.c (limited to 'tests/sqrtr_f.c') diff --git a/tests/sqrtr_f.c b/tests/sqrtr_f.c deleted file mode 100644 index 7735f68..0000000 --- a/tests/sqrtr_f.c +++ /dev/null @@ -1,25 +0,0 @@ -#include "test.h" - -static void -run_test(jit_state_t *j, uint8_t *arena_base, size_t arena_size) -{ - jit_begin(j, arena_base, arena_size); - size_t align = jit_enter_jit_abi(j, 0, 0, 0); - jit_load_args_1(j, jit_operand_fpr (JIT_OPERAND_ABI_FLOAT, JIT_F0)); - - jit_sqrtr_f(j, JIT_F0, JIT_F0); - jit_leave_jit_abi(j, 0, 0, align); - jit_retr_f(j, JIT_F0); - - float (*f)(float) = jit_end(j, NULL); - - ASSERT(f(0.0) == 0.0); - ASSERT(f(4.0) == 2.0); - ASSERT(f(-4.0) != f(-4.0)); // nan -} - -int -main (int argc, char *argv[]) -{ - return main_helper(argc, argv, run_test); -} -- cgit v1.2.3