remove screenclone test cause it leaks memory on purpose

pull/9624/head
Mitchell Hashimoto 2025-11-17 06:41:59 -10:00
parent 09d41fd4af
commit 2f49e0c902
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 0 additions and 11 deletions

View File

@ -153,14 +153,3 @@ fn stepClone(ptr: *anyopaque) Benchmark.Error!void {
// to benchmark that. We'll free when the benchmark exits. // to benchmark that. We'll free when the benchmark exits.
} }
} }
test ScreenClone {
const testing = std.testing;
const alloc = testing.allocator;
const impl: *ScreenClone = try .create(alloc, .{});
defer impl.destroy(alloc);
const bench = impl.benchmark();
_ = try bench.run(.once);
}