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

moonbitlang / core / 2203
92%

Build:
DEFAULT BRANCH: main
Ran 30 Dec 2025 02:18AM UTC
Jobs 1
Files 241
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

30 Dec 2025 02:17AM UTC coverage: 92.223% (-0.01%) from 92.236%
2203

push

github

bobzhang
fix(deque): handle overlapping self-blit in blit_to

When blit_to is called with src == dst and overlapping regions where
src_offset < dst_offset, the source elements were being overwritten
before being read, causing incorrect results.

Example: d = [1,2,3,4,5], d.blit_to(d, len=3, src_offset=1, dst_offset=2)
Before: [1, 2, 2, 2, 2] (wrong - source overwritten during copy)
After:  [1, 2, 2, 3, 4] (correct - copied in reverse order)

The fix detects this case using physical_equal and copies in reverse
order when needed, similar to how memmove handles overlapping regions.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

10 of 12 new or added lines in 1 file covered. (83.33%)

9997 of 10840 relevant lines covered (92.22%)

185224.71 hits per line

New Missed Lines in Diff

Lines Coverage ∆ File
2
98.6
-0.54% deque/deque.mbt
Jobs
ID Job ID Ran Files Coverage
1 2203.1 30 Dec 2025 02:18AM UTC 242
92.24
GitHub Action Run
Source Files on build 2203
  • Tree
  • List 241
  • Changed 1
  • Source Changed 1
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • 3f32f458 on github
  • Prev Build on main (#2200)
  • Next Build on main (#2205)
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

© 2025 Coveralls, Inc