• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

stillwater-sc / universal / 26345412711
85%
master: 84%

Build:
Build:
LAST BUILD BRANCH: main
DEFAULT BRANCH: master
Ran 23 May 2026 11:06PM UTC
Jobs 1
Files 657
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

23 May 2026 10:38PM UTC coverage: 83.969% (-0.001%) from 83.97%
26345412711

push

github

web-flow
fix(ereal): IEEE 754 signed-zero subtraction (#962) (#964)

-0 - +0 returned +0 instead of -0. Two defects on the signed-zero path:

1. apply_ieee754_add_special_values() had no both-operands-zero branch, so
   the result fell through to the general renormalize path which collapses
   any zero to +0. Add the IEEE 754 round-to-nearest rule: a sum of two
   zeros is -0 only if both addends are -0. operator-= routes here on the
   sign-flipped RHS, so this single rule produces the correct subtraction
   table (-0 - +0 = -0 + -0 = -0; -0 - -0 = -0 + +0 = +0).

2. convert_to_ieee754() seeded its accumulator with +0, and IEEE +0 + -0
   == +0, discarding a stored -0 on conversion to native double. Seed from
   the leading (dominant) component instead -- numerically identical for
   non-zero expansions, sign-preserving for zero.

Unskip the -0 - +0 case in elastic/ereal/arithmetic/subtraction.cpp (drop
the EREAL_TEST_ISSUE_962 gate) and add the -0 - -0 = +0 case. Verified
foundational tests pass on both gcc-13 and clang-18.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

9 of 9 new or added lines in 1 file covered. (100.0%)

10 existing lines in 1 file now uncovered.

47281 of 56308 relevant lines covered (83.97%)

5271742.13 hits per line

Coverage Regressions

Lines Coverage ∆ File
10
31.43
-3.57% include/sw/universal/verification/test_suite_randoms.hpp
Jobs
ID Job ID Ran Files Coverage
1 26345412711.1 23 May 2026 11:06PM UTC 657
83.97
GitHub Action Run
Source Files on build 26345412711
  • Tree
  • List 657
  • Changed 3
  • Source Changed 1
  • Coverage Changed 3
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • Github Actions Build #26345412711
  • b94ae2df on github
  • Prev Build on main (#26343438988)
  • Next Build on main (#26346151217)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc