File: test.sh

package info (click to toggle)
btrfs-progs 5.10.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 16,028 kB
  • sloc: ansic: 96,117; sh: 8,146; python: 1,149; makefile: 811
file content (15 lines) | stat: -rwxr-xr-x 533 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
# Regression test for mkfs.btrfs --rootdir on non-existent file.
# Expected behavior: it should create a new file if destination doesn't exist
# Regression 460e93f25754 ("btrfs-progs: mkfs: check the status of file at mkfs")

source "$TEST_TOP/common"

check_prereq mkfs.btrfs

tmp=$(mktemp -d --tmpdir btrfs-progs-mkfs.rootdirXXXXXXX)
# we can't use TEST_DEV, a file is needed
img=$(mktemp btrfs-progs-mkfs.rootdirXXXXXXX)
run_check "$TOP/mkfs.btrfs" -f --rootdir "$INTERNAL_BIN/Documentation/" "$img"

rm -rf -- "$img"