mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-11 17:06:32 +00:00
71d4768ad0
Signed-off-by: David Sterba <dsterba@suse.com>
14 lines
296 B
Bash
Executable File
14 lines
296 B
Bash
Executable File
#!/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
|
|
make TEST_LOG=dump test-check-lowmem
|
|
make TEST_LOG=dump test-misc
|
|
make TEST_LOG=dump test-convert
|
|
make TEST_LOG=dump test-fuzz
|