aboutsummaryrefslogtreecommitdiff
path: root/tests/internal
diff options
context:
space:
mode:
authorLaytan Laats <laytanlaats@hotmail.com>2025-02-06 21:44:34 +0100
committerLaytan Laats <laytanlaats@hotmail.com>2025-02-06 21:44:34 +0100
commit5defddffd074b221cbb393bfdd9c3d50ffd7b499 (patch)
tree1d7b1d5981df66f953465a25592609c964fa7152 /tests/internal
parent9241d7c69803ae388f06f0b593c018c63432f5eb (diff)
reorganize tests and handle endian
Diffstat (limited to 'tests/internal')
-rw-r--r--tests/internal/test_abs.odin122
1 files changed, 117 insertions, 5 deletions
diff --git a/tests/internal/test_abs.odin b/tests/internal/test_abs.odin
index 2f7b67862..56db10c09 100644
--- a/tests/internal/test_abs.odin
+++ b/tests/internal/test_abs.odin
@@ -2,26 +2,65 @@ package test_internal
import "core:testing"
-@(test)
-test_abs_float :: proc(t: ^testing.T) {
- not_const :: proc(v: $T) -> T { return v }
+@(private="file")
+not_const :: proc(v: $T) -> T { return v }
+@(test)
+abs_f16_const :: proc(t: ^testing.T) {
// Constant f16
testing.expect_value(t, abs(f16(0.)), 0.)
testing.expect_value(t, abs(f16(-0.)), 0.)
testing.expect_value(t, abs(f16(-1.)), 1.)
testing.expect_value(t, abs(min(f16)), max(f16))
testing.expect_value(t, abs(max(f16)), max(f16))
- testing.expect_value(t, abs(f16(-.12345)), .12345)
+ testing.expect_value(t, abs(f16(-.12)), .12)
+
+ // Constant f16le
+ testing.expect_value(t, abs(f16le(0.)), 0.)
+ testing.expect_value(t, abs(f16le(-0.)), 0.)
+ testing.expect_value(t, abs(f16le(-1.)), 1.)
+ testing.expect_value(t, abs(min(f16le)), max(f16le))
+ testing.expect_value(t, abs(max(f16le)), max(f16le))
+ testing.expect_value(t, abs(f16le(-.12)), .12)
+ // Constant f16be
+ testing.expect_value(t, abs(f16be(0.)), 0.)
+ testing.expect_value(t, abs(f16be(-0.)), 0.)
+ testing.expect_value(t, abs(f16be(-1.)), 1.)
+ testing.expect_value(t, abs(min(f16be)), max(f16be))
+ testing.expect_value(t, abs(max(f16be)), max(f16be))
+ testing.expect_value(t, abs(f16be(-.12)), .12)
+}
+
+@(test)
+abs_f16_variable :: proc(t: ^testing.T) {
// Variable f16
testing.expect_value(t, abs(not_const(f16(0.))), 0.)
testing.expect_value(t, abs(not_const(f16(-0.))), 0.)
testing.expect_value(t, abs(not_const(f16(-1.))), 1.)
testing.expect_value(t, abs(not_const(min(f16))), max(f16))
testing.expect_value(t, abs(not_const(max(f16))), max(f16))
- testing.expect_value(t, abs(not_const(f16(-.12345))), .12345)
+ testing.expect_value(t, abs(not_const(f16(-.12))), .12)
+ // Variable f16le
+ testing.expect_value(t, abs(not_const(f16le(0.))), 0.)
+ testing.expect_value(t, abs(not_const(f16le(-0.))), 0.)
+ testing.expect_value(t, abs(not_const(f16le(-1.))), 1.)
+ testing.expect_value(t, abs(not_const(min(f16le))), max(f16le))
+ testing.expect_value(t, abs(not_const(max(f16le))), max(f16le))
+ testing.expect_value(t, abs(not_const(f16le(-.12))), .12)
+
+ // Variable f16be
+ testing.expect_value(t, abs(not_const(f16be(0.))), 0.)
+ testing.expect_value(t, abs(not_const(f16be(-0.))), 0.)
+ testing.expect_value(t, abs(not_const(f16be(-1.))), 1.)
+ testing.expect_value(t, abs(not_const(min(f16be))), max(f16be))
+ testing.expect_value(t, abs(not_const(max(f16be))), max(f16be))
+ testing.expect_value(t, abs(not_const(f16be(-.12))), .12)
+}
+
+@(test)
+abs_f32_const :: proc(t: ^testing.T) {
// Constant f32
testing.expect_value(t, abs(f32(0.)), 0.)
testing.expect_value(t, abs(f32(-0.)), 0.)
@@ -30,6 +69,25 @@ test_abs_float :: proc(t: ^testing.T) {
testing.expect_value(t, abs(max(f32)), max(f32))
testing.expect_value(t, abs(f32(-.12345)), .12345)
+ // Constant f32le
+ testing.expect_value(t, abs(f32le(0.)), 0.)
+ testing.expect_value(t, abs(f32le(-0.)), 0.)
+ testing.expect_value(t, abs(f32le(-1.)), 1.)
+ testing.expect_value(t, abs(min(f32le)), max(f32le))
+ testing.expect_value(t, abs(max(f32le)), max(f32le))
+ testing.expect_value(t, abs(f32le(-.12345)), .12345)
+
+ // Constant f32be
+ testing.expect_value(t, abs(f32be(0.)), 0.)
+ testing.expect_value(t, abs(f32be(-0.)), 0.)
+ testing.expect_value(t, abs(f32be(-1.)), 1.)
+ testing.expect_value(t, abs(min(f32be)), max(f32be))
+ testing.expect_value(t, abs(max(f32be)), max(f32be))
+ testing.expect_value(t, abs(f32be(-.12345)), .12345)
+}
+
+@(test)
+abs_f32_variable :: proc(t: ^testing.T) {
// Variable f32
testing.expect_value(t, abs(not_const(f32(0.))), 0.)
testing.expect_value(t, abs(not_const(f32(-0.))), 0.)
@@ -38,6 +96,25 @@ test_abs_float :: proc(t: ^testing.T) {
testing.expect_value(t, abs(not_const(max(f32))), max(f32))
testing.expect_value(t, abs(not_const(f32(-.12345))), .12345)
+ // Variable f32le
+ testing.expect_value(t, abs(not_const(f32le(0.))), 0.)
+ testing.expect_value(t, abs(not_const(f32le(-0.))), 0.)
+ testing.expect_value(t, abs(not_const(f32le(-1.))), 1.)
+ testing.expect_value(t, abs(not_const(min(f32le))), max(f32le))
+ testing.expect_value(t, abs(not_const(max(f32le))), max(f32le))
+ testing.expect_value(t, abs(not_const(f32le(-.12345))), .12345)
+
+ // Variable f32be
+ testing.expect_value(t, abs(not_const(f32be(0.))), 0.)
+ testing.expect_value(t, abs(not_const(f32be(-0.))), 0.)
+ testing.expect_value(t, abs(not_const(f32be(-1.))), 1.)
+ testing.expect_value(t, abs(not_const(min(f32be))), max(f32be))
+ testing.expect_value(t, abs(not_const(max(f32be))), max(f32be))
+ testing.expect_value(t, abs(not_const(f32be(-.12345))), .12345)
+}
+
+@(test)
+abs_f64_const :: proc(t: ^testing.T) {
// Constant f64
testing.expect_value(t, abs(f64(0.)), 0.)
testing.expect_value(t, abs(f64(-0.)), 0.)
@@ -46,6 +123,25 @@ test_abs_float :: proc(t: ^testing.T) {
testing.expect_value(t, abs(max(f64)), max(f64))
testing.expect_value(t, abs(f64(-.12345)), .12345)
+ // Constant f64le
+ testing.expect_value(t, abs(f64le(0.)), 0.)
+ testing.expect_value(t, abs(f64le(-0.)), 0.)
+ testing.expect_value(t, abs(f64le(-1.)), 1.)
+ testing.expect_value(t, abs(min(f64le)), max(f64le))
+ testing.expect_value(t, abs(max(f64le)), max(f64le))
+ testing.expect_value(t, abs(f64le(-.12345)), .12345)
+
+ // Constant f64be
+ testing.expect_value(t, abs(f64be(0.)), 0.)
+ testing.expect_value(t, abs(f64be(-0.)), 0.)
+ testing.expect_value(t, abs(f64be(-1.)), 1.)
+ testing.expect_value(t, abs(min(f64be)), max(f64be))
+ testing.expect_value(t, abs(max(f64be)), max(f64be))
+ testing.expect_value(t, abs(f64be(-.12345)), .12345)
+}
+
+@(test)
+abs_f64_variable :: proc(t: ^testing.T) {
// Variable f64
testing.expect_value(t, abs(not_const(f64(0.))), 0.)
testing.expect_value(t, abs(not_const(f64(-0.))), 0.)
@@ -53,4 +149,20 @@ test_abs_float :: proc(t: ^testing.T) {
testing.expect_value(t, abs(not_const(min(f64))), max(f64))
testing.expect_value(t, abs(not_const(max(f64))), max(f64))
testing.expect_value(t, abs(not_const(f64(-.12345))), .12345)
+
+ // Variable f64le
+ testing.expect_value(t, abs(not_const(f64le(0.))), 0.)
+ testing.expect_value(t, abs(not_const(f64le(-0.))), 0.)
+ testing.expect_value(t, abs(not_const(f64le(-1.))), 1.)
+ testing.expect_value(t, abs(not_const(min(f64le))), max(f64le))
+ testing.expect_value(t, abs(not_const(max(f64le))), max(f64le))
+ testing.expect_value(t, abs(not_const(f64le(-.12345))), .12345)
+
+ // Variable f64be
+ testing.expect_value(t, abs(not_const(f64be(0.))), 0.)
+ testing.expect_value(t, abs(not_const(f64be(-0.))), 0.)
+ testing.expect_value(t, abs(not_const(f64be(-1.))), 1.)
+ testing.expect_value(t, abs(not_const(min(f64be))), max(f64be))
+ testing.expect_value(t, abs(not_const(max(f64be))), max(f64be))
+ testing.expect_value(t, abs(not_const(f64be(-.12345))), .12345)
}