2021-02-24 16:19:24 +00:00
|
|
|
#!/bin/sh -x
|
|
|
|
|
|
|
|
where="$1"
|
|
|
|
|
|
|
|
cd "$where" || { echo "ERROR: $1 not found"; exit 1; }
|
|
|
|
|
|
|
|
make TEST_LOG=dump test-cli
|
|
|
|
make TEST_LOG=dump test-mkfs
|
|
|
|
make TEST_LOG=dump test-check
|
2023-10-12 14:31:22 +00:00
|
|
|
make TEST_LOG=dump test-check-lowmem
|
2021-02-24 16:19:24 +00:00
|
|
|
make TEST_LOG=dump test-misc
|
|
|
|
make TEST_LOG=dump test-convert
|
|
|
|
make TEST_LOG=dump test-fuzz
|