aboutsummaryrefslogtreecommitdiff
path: root/test/compare_output.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-03-23 14:04:52 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-03-23 14:04:52 -0400
commit3e9697bb35267973554155cedc2e593bd4519dd8 (patch)
tree86868b584d74643e091c2858bfd3f4425264ae26 /test/compare_output.zig
parent14d416f83b4dabeb714d7001f6efa4fcbac180d5 (diff)
downloadzig-3e9697bb35267973554155cedc2e593bd4519dd8.tar.gz
zig-3e9697bb35267973554155cedc2e593bd4519dd8.zip
remove octal and hex floats from the language
closes #2093 This is technically a breaking change but I would be surprised if anyone was actually using this feature.
Diffstat (limited to 'test/compare_output.zig')
-rw-r--r--test/compare_output.zig10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/compare_output.zig b/test/compare_output.zig
index c2b4640239..72f4e223aa 100644
--- a/test/compare_output.zig
+++ b/test/compare_output.zig
@@ -215,13 +215,6 @@ pub fn addCases(cases: *tests.CompareOutputContext) void {
\\ _ = c.printf(c"0x103.70p-5: %.013a\n",
\\ f64(0x103.70p-5));
\\
- \\ _ = c.printf(c"\n");
- \\
- \\ _ = c.printf(c"0b10100.00010e0: %.013a\n",
- \\ f64(0b10100.00010e0));
- \\ _ = c.printf(c"0o10700.00010e0: %.013a\n",
- \\ f64(0o10700.00010e0));
- \\
\\ return 0;
\\}
,
@@ -260,9 +253,6 @@ pub fn addCases(cases: *tests.CompareOutputContext) void {
\\0x103.70p+5: 0x1.0370000000000p+13
\\0x103.70p-5: 0x1.0370000000000p+3
\\
- \\0b10100.00010e0: 0x1.4100000000000p+4
- \\0o10700.00010e0: 0x1.1c00010000000p+12
- \\
);
cases.add("order-independent declarations",