| ... | ... | @@ -0,0 +1,53 @@ |
| 1 | const __floatdidf = @import("floatdidf.zig").__floatdidf; |
| 2 | const testing = @import("std").testing; |
| 3 | |
| 4 | fn test__floatdidf(a: i64, expected: f64) void { |
| 5 | const r = __floatdidf(a); |
| 6 | testing.expect(r == expected); |
| 7 | } |
| 8 | |
| 9 | test "floatdidf" { |
| 10 | test__floatdidf(0, 0.0); |
| 11 | test__floatdidf(1, 1.0); |
| 12 | test__floatdidf(2, 2.0); |
| 13 | test__floatdidf(20, 20.0); |
| 14 | test__floatdidf(-1, -1.0); |
| 15 | test__floatdidf(-2, -2.0); |
| 16 | test__floatdidf(-20, -20.0); |
| 17 | test__floatdidf(0x7FFFFF8000000000, 0x1.FFFFFEp+62); |
| 18 | test__floatdidf(0x7FFFFFFFFFFFF800, 0x1.FFFFFFFFFFFFEp+62); |
| 19 | test__floatdidf(0x7FFFFF0000000000, 0x1.FFFFFCp+62); |
| 20 | test__floatdidf(0x7FFFFFFFFFFFF000, 0x1.FFFFFFFFFFFFCp+62); |
| 21 | test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000008000000000)), -0x1.FFFFFEp+62); |
| 22 | test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000000000000800)), -0x1.FFFFFFFFFFFFEp+62); |
| 23 | test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000010000000000)), -0x1.FFFFFCp+62); |
| 24 | test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000000000001000)), -0x1.FFFFFFFFFFFFCp+62); |
| 25 | test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000000000000000)), -0x1.000000p+63); |
| 26 | test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000000000000001)), -0x1.000000p+63); |
| 27 | test__floatdidf(0x0007FB72E8000000, 0x1.FEDCBAp+50); |
| 28 | test__floatdidf(0x0007FB72EA000000, 0x1.FEDCBA8p+50); |
| 29 | test__floatdidf(0x0007FB72EB000000, 0x1.FEDCBACp+50); |
| 30 | test__floatdidf(0x0007FB72EBFFFFFF, 0x1.FEDCBAFFFFFFCp+50); |
| 31 | test__floatdidf(0x0007FB72EC000000, 0x1.FEDCBBp+50); |
| 32 | test__floatdidf(0x0007FB72E8000001, 0x1.FEDCBA0000004p+50); |
| 33 | test__floatdidf(0x0007FB72E6000000, 0x1.FEDCB98p+50); |
| 34 | test__floatdidf(0x0007FB72E7000000, 0x1.FEDCB9Cp+50); |
| 35 | test__floatdidf(0x0007FB72E7FFFFFF, 0x1.FEDCB9FFFFFFCp+50); |
| 36 | test__floatdidf(0x0007FB72E4000001, 0x1.FEDCB90000004p+50); |
| 37 | test__floatdidf(0x0007FB72E4000000, 0x1.FEDCB9p+50); |
| 38 | test__floatdidf(0x023479FD0E092DC0, 0x1.1A3CFE870496Ep+57); |
| 39 | test__floatdidf(0x023479FD0E092DA1, 0x1.1A3CFE870496Dp+57); |
| 40 | test__floatdidf(0x023479FD0E092DB0, 0x1.1A3CFE870496Ep+57); |
| 41 | test__floatdidf(0x023479FD0E092DB8, 0x1.1A3CFE870496Ep+57); |
| 42 | test__floatdidf(0x023479FD0E092DB6, 0x1.1A3CFE870496Ep+57); |
| 43 | test__floatdidf(0x023479FD0E092DBF, 0x1.1A3CFE870496Ep+57); |
| 44 | test__floatdidf(0x023479FD0E092DC1, 0x1.1A3CFE870496Ep+57); |
| 45 | test__floatdidf(0x023479FD0E092DC7, 0x1.1A3CFE870496Ep+57); |
| 46 | test__floatdidf(0x023479FD0E092DC8, 0x1.1A3CFE870496Ep+57); |
| 47 | test__floatdidf(0x023479FD0E092DCF, 0x1.1A3CFE870496Ep+57); |
| 48 | test__floatdidf(0x023479FD0E092DD0, 0x1.1A3CFE870496Ep+57); |
| 49 | test__floatdidf(0x023479FD0E092DD1, 0x1.1A3CFE870496Fp+57); |
| 50 | test__floatdidf(0x023479FD0E092DD8, 0x1.1A3CFE870496Fp+57); |
| 51 | test__floatdidf(0x023479FD0E092DDF, 0x1.1A3CFE870496Fp+57); |
| 52 | test__floatdidf(0x023479FD0E092DE0, 0x1.1A3CFE870496Fp+57); |
| 53 | } |