File: test.sh

package info (click to toggle)
btrfs-progs 6.17.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,612 kB
  • sloc: ansic: 127,282; sh: 7,915; python: 1,384; makefile: 900; asm: 296
file content (56 lines) | stat: -rwxr-xr-x 1,243 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
# Basic test for mkfs.btrfs --compress --rootdir. Create a dataset and use it
# for filesystem creation with various compression levels.

source "$TEST_TOP/common" || exit

check_prereq mkfs.btrfs
check_prereq btrfs
check_global_prereq du

setup_root_helper
prepare_test_dev

tmp=$(_mktemp_dir mkfs-rootdir)
limit=$((128*1024*1024))

# Create dataset of approximate size 256M so the repeated compression does not take that long
for file in /usr/bin/[gx]*; do
	run_check cp -axf --update --no-preserve=ownership,context "$file" "$tmp"
	size=$(du -sb "$tmp" | awk '{print $1}')
	if [ "$size" -gt "$limit" ]; then
		break
	fi
done

for file in /usr/lib*/lib[abcdef]*; do
	run_check cp -axf --update --no-preserve=ownership,context "$file" "$tmp"
	size=$(du -sb "$tmp" | awk '{print $1}')
	if [ "$size" -gt "$limit" ]; then
		break
	fi
done

run_check du -sh "$tmp"

run_test()
{
	local comp="$1"

	run_check_mkfs_test_dev --rootdir "$tmp" --compress "$comp"
	run_check $SUDO_HELPER "$TOP/btrfs" check "$TEST_DEV"

	run_check_mount_test_dev
	run_check du -sh "$TEST_MNT"
	run_check_umount_test_dev
}

run_test lzo
run_test zlib
run_test zlib:1
run_test zlib:9
run_test zstd
run_test zstd:1
run_test zstd:15

run_check rm -rf -- "$tmp"