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

SamboyCoding / Cpp2IL / 13931838342

18 Mar 2025 07:26PM UTC coverage: 27.187% (-0.09%) from 27.279%
13931838342

Pull #425

github

web-flow
Merge 47060cc8e into 6f9cec570
Pull Request #425: Add support for the Mach-O universal file format

1270 of 6472 branches covered (19.62%)

Branch coverage included in aggregate %.

2 of 55 new or added lines in 4 files covered. (3.64%)

3379 of 10628 relevant lines covered (31.79%)

122585.14 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/LibCpp2IL/MachO/MachOUniversalHeader.cs
1
namespace LibCpp2IL.MachO;
2

3
public class MachOUniversalHeader : ReadableClass
4
{
5
    public uint Magic; //0xCAFEBABE
6
    public uint NumberFileEntries; // Number of file entries in the container
7

8
    public override void Read(ClassReadingBinaryReader reader)
9
    {
NEW
10
        Magic = reader.ReadUInt32WithReversedBits();
×
NEW
11
        NumberFileEntries = reader.ReadUInt32WithReversedBits();
×
NEW
12
    }
×
13
}
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