mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git
synced 2025-01-07 19:43:46 +08:00
287512dc20
Build tests inside CentOS 7, long term support distro. Signed-off-by: David Sterba <dsterba@suse.com>
13 lines
259 B
Bash
Executable File
13 lines
259 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-misc
|
|
make TEST_LOG=dump test-convert
|
|
make TEST_LOG=dump test-fuzz
|