summaryrefslogtreecommitdiff
path: root/debian/patches/riscv-nan-formatting.diff
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2024-09-03 14:40:23 -0400
committerGravatar Benjamin Barenblat <bbaren@google.com>2024-09-03 14:40:23 -0400
commit130925baf43d1d33d2b412ee6616c969bdbcf99a (patch)
treeb8852a445d3a66cc5e479e999d76c27740c59fb0 /debian/patches/riscv-nan-formatting.diff
parentedd50222f6dc84d6d76acdd3e1ad23ad1bc3bec6 (diff)
Update patches and bump internal namespace
Diffstat (limited to 'debian/patches/riscv-nan-formatting.diff')
-rw-r--r--debian/patches/riscv-nan-formatting.diff20
1 files changed, 0 insertions, 20 deletions
diff --git a/debian/patches/riscv-nan-formatting.diff b/debian/patches/riscv-nan-formatting.diff
deleted file mode 100644
index 8ad9b629..00000000
--- a/debian/patches/riscv-nan-formatting.diff
+++ /dev/null
@@ -1,20 +0,0 @@
-From: Benjamin Barenblat <bbaren@google.com>
-Subject: riscv64: Disable negative NaN float ostream format checking
-Bug-Debian: https://bugs.debian.org/1059340
-
-Streaming a negative NaN float with libstdc++ on riscv64 produces an
-optimization-dependent result. Don't require that logging such a float with
-Abseil produce the same result as libstdc++ streaming.
-
---- a/absl/log/log_format_test.cc
-+++ b/absl/log/log_format_test.cc
-@@ -611,7 +611,9 @@
- EXPECT_CALL(
- test_sink,
- Send(AllOf(
-+#ifndef __riscv // see https://bugs.debian.org/1059340
- TextMessage(MatchesOstream(comparison_stream)),
-+#endif
- TextMessage(AnyOf(Eq("-nan"), Eq("nan"), Eq("NaN"), Eq("-nan(ind)"))),
- ENCODED_MESSAGE(
- AnyOf(EqualsProto(R"pb(value { str: "-nan" })pb"),