mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-26 15:01:03 +00:00
Use upper case variant name for the following variants: 1) top -> TOP 2) script_dir -> SCRIPT_DIR And change the following variant name: 1) RESULT -> RESULTS Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.cz>
16 lines
364 B
Bash
Executable File
16 lines
364 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source $TOP/tests/common
|
|
|
|
echo "extracting image default_case.tar.xz" >> $RESULTS
|
|
tar xJf default_case.tar.xz || \
|
|
_fail "failed to extract default_case.tar.xz"
|
|
check_image test.img
|
|
|
|
echo "extracting image skinny_case.tar.xz" >> $RESULTS
|
|
tar xJf skinny_case.tar.xz || \
|
|
_fail "failed to extract skinny_case.tar.xz"
|
|
check_image test.img
|
|
|
|
rm test.img
|