Further work on inode decoding
This commit is contained in:
+2
-7
@@ -5,11 +5,6 @@ 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;
|
||||
const reader = try squashfs.newReader(testFileName);
|
||||
defer reader.close();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user