aboutsummaryrefslogtreecommitdiff
path: root/tests/bltgtr_f.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-30 00:53:34 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-30 00:53:34 +0300
commit451797936119d8236843c4e9aee4a47dc5cddd56 (patch)
tree5aed431a0058bbe00627659cefc8fef85a4e18bb /tests/bltgtr_f.c
parent864a078cf9faf9b85a7a9042b4033d46847aea8f (diff)
downloadejit-451797936119d8236843c4e9aee4a47dc5cddd56.tar.gz
ejit-451797936119d8236843c4e9aee4a47dc5cddd56.zip
continue working through test cases
+ Remove overflow and more complicated floating point tests for now
Diffstat (limited to 'tests/bltgtr_f.c')
-rw-r--r--tests/bltgtr_f.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/bltgtr_f.c b/tests/bltgtr_f.c
deleted file mode 100644
index 32b2a96..0000000
--- a/tests/bltgtr_f.c
+++ /dev/null
@@ -1,41 +0,0 @@
-#include <ejit/ejit.h>
-#include <assert.h>
-#include "do_jit.h"
-
-int main()
-{
- struct ejit_operand operands[2] = {
- EJIT_OPERAND_FPR(0, EJIT_TYPE(double)),
- EJIT_OPERAND_FPR(1, EJIT_TYPE(double)),
- };
-
- struct ejit_func *f = ejit_create_func(EJIT_TYPE(long), 2, operands);
- struct ejit_reloc r = ejit_bltgtr_f(f, EJIT_FPR(0), EJIT_FPR(1));
- ejit_reti(f, 0);
-
- struct ejit_label l = ejit_label(f);
- ejit_patch(f, r, l);
- ejit_reti(f, 1);
-
- ejit_select_compile_func(f, 0, 2, EJIT_USE64(double), do_jit);
-
- assert(ejit_run_func_2(f, EJIT_ARG(0, double),
- EJIT_ARG(0, double)) == 0);
- assert(ejit_run_func_2(f, EJIT_ARG(0, double),
- EJIT_ARG(1, double)) == 1);
- assert(ejit_run_func_2(f, EJIT_ARG(1, double),
- EJIT_ARG(0, double)) == 1);
- assert(ejit_run_func_2(f, EJIT_ARG(0, double),
- EJIT_ARG(-1, double)) == 1);
- assert(ejit_run_func_2(f, EJIT_ARG(-1, double),
- EJIT_ARG(0, double)) == 1);
- assert(ejit_run_func_2(f, EJIT_ARG(1, double),
- EJIT_ARG(1, double)) == 0);
-
- assert(ejit_run_func_2(f, EJIT_ARG(0, double),
- EJIT_ARG(0.0/0.0, double)) == 0);
- assert(ejit_run_func_2(f, EJIT_ARG(0.0/0.0, double),
- EJIT_ARG(0, double)) == 0);
- assert(ejit_run_func_2(f, EJIT_ARG(0.0/0.0, double),
- EJIT_ARG(0.0/0.0, double)) == 0);
-}