zvfs: testcase重写

This commit is contained in:
2026-03-02 07:27:48 +00:00
parent 4f3e2a592f
commit f82e089325
23 changed files with 1597 additions and 932 deletions

11
Makefile Normal file → Executable file
View File

@@ -1,9 +1,16 @@
.PHONY: all clean zvfs
.PHONY: all clean zvfs test run-test
all: zvfs
zvfs:
$(MAKE) -C zvfs
test:
$(MAKE) -C test
run-test:
$(MAKE) -C test run-test
clean:
$(MAKE) -C zvfs clean
$(MAKE) -C zvfs clean
$(MAKE) -C test clean