remove redundant test

turns out this actually has coverage in std.debug
This commit is contained in:
mlugg 2025-09-04 01:03:02 +01:00
parent 405075f745
commit ba5d9d5a41
No known key found for this signature in database
GPG Key ID: 3F5B7DCCBF4AF02E

View File

@ -87,11 +87,6 @@ pub fn deinit(self: *SelfInfo, gpa: Allocator) void {
self.modules.deinit(gpa);
if (Module.LookupCache != void) self.lookup_cache.deinit(gpa);
}
test {
// `std.debug` does not currently utilize `deinit`, as it keeps hold of debug info for the
// whole lifetime of the program. Let's try to avoid it bitrotting.
_ = &deinit;
}
pub fn unwindFrame(self: *SelfInfo, gpa: Allocator, context: *UnwindContext) Error!usize {
comptime assert(supports_unwinding);