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

SamboyCoding / Cpp2IL / 28719485642

04 Jul 2026 08:59PM UTC coverage: 35.251% (-3.5%) from 38.757%
28719485642

push

github

SamboyCoding
Core: Drop explicit net7 and net6 TFMs

Note these are still usable via the netstandard TFM so this doesn't break any use cases, but several packages were warning about not being tested on these TFMs.

2595 of 8474 branches covered (30.62%)

Branch coverage included in aggregate %.

4947 of 12921 relevant lines covered (38.29%)

162592.91 hits per line

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

0.0
/LibCpp2IL/Elf/ElfProgramHeaderEntry32.cs
1
using LibCpp2IL.PE;
2

3
namespace LibCpp2IL.Elf;
4

5
public class ElfProgramHeaderEntry32 : ReadableClass, IElfProgramHeaderEntry
6
{
7
    private ElfProgramEntryType _internalType;
8
    private uint _internalOffsetRaw;
9
    private uint _internalVirtualAddr;
10
    private uint _internalPhysicalAddr;
11
    private uint _internalSizeRaw;
12
    private uint _internalSizeVirtual;
13
    private ElfProgramHeaderFlags _internalFlags; //This is here in 32-bit elf files
14
    private int _internalAlign;
15

16
    public ElfProgramHeaderFlags Flags => _internalFlags;
×
17
    public ElfProgramEntryType Type => _internalType;
×
18
    public ulong RawAddress => _internalOffsetRaw;
×
19
    public ulong VirtualAddress => _internalVirtualAddr;
×
20
    public ulong PhysicalAddr => _internalPhysicalAddr;
×
21
    public ulong RawSize => _internalSizeRaw;
×
22
    public ulong VirtualSize => _internalSizeVirtual;
×
23
    public long Align => _internalAlign;
×
24

25
    public override void Read(ClassReadingBinaryReader reader)
26
    {
27
        _internalType = (ElfProgramEntryType)reader.ReadUInt32();
×
28
        _internalOffsetRaw = reader.ReadUInt32();
×
29
        _internalVirtualAddr = reader.ReadUInt32();
×
30
        _internalPhysicalAddr = reader.ReadUInt32();
×
31
        _internalSizeRaw = reader.ReadUInt32();
×
32
        _internalSizeVirtual = reader.ReadUInt32();
×
33
        _internalFlags = (ElfProgramHeaderFlags)reader.ReadUInt32();
×
34
        _internalAlign = reader.ReadInt32();
×
35
    }
×
36
}
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