aboutsummaryrefslogtreecommitdiff
path: root/tests/truncr_d_32.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/truncr_d_32.c')
-rw-r--r--tests/truncr_d_32.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/truncr_d_32.c b/tests/truncr_d_32.c
index d028319..bc4c8fc 100644
--- a/tests/truncr_d_32.c
+++ b/tests/truncr_d_32.c
@@ -16,14 +16,14 @@ int main(int argc, char *argv[])
ejit_select_compile_func(f, 1, 1, EJIT_TYPE(int32_t), do_jit);
- assert(erf1(f, EJIT_ARG(0.0, double)) == 0);
- assert(erf1(f, EJIT_ARG(-0.0, double)) == 0);
- assert(erf1(f, EJIT_ARG(0.5, double)) == 0);
- assert(erf1(f, EJIT_ARG(-0.5, double)) == 0);
- assert(erf1(f, EJIT_ARG(1.5, double)) == 1);
- assert(erf1(f, EJIT_ARG(-1.5, double)) == -1);
- assert(erf1(f, EJIT_ARG(2.5, double)) == 2);
- assert(erf1(f, EJIT_ARG(-2.5, double)) == -2);
+ assert(erfi1(f, EJIT_ARG(0.0, double)) == 0);
+ assert(erfi1(f, EJIT_ARG(-0.0, double)) == 0);
+ assert(erfi1(f, EJIT_ARG(0.5, double)) == 0);
+ assert(erfi1(f, EJIT_ARG(-0.5, double)) == 0);
+ assert(erfi1(f, EJIT_ARG(1.5, double)) == 1);
+ assert(erfi1(f, EJIT_ARG(-1.5, double)) == -1);
+ assert(erfi1(f, EJIT_ARG(2.5, double)) == 2);
+ assert(erfi1(f, EJIT_ARG(-2.5, double)) == -2);
ejit_destroy_func(f);
}