Initial commit

This commit is contained in:
Caleb Gardner
2025-05-11 09:39:24 -05:00
parent ad7aa271ea
commit 58e89c0981
7 changed files with 199 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
const std = @import("std");
const debug = std.debug;
const squashfs = @import("squashfs.zig");
const testFileName = "testing/LinuxPATest.sfs";
test "open test file" {
const testFile = try std.fs.cwd().openFile(
testFileName,
.{},
);
defer testFile.close();
const reader = try squashfs.newReader(testFile.reader().any());
_ = reader;
}