Skip to content

Commit abee68c

Browse files
committed
Add manual-test-macos.sh
1 parent fef3f1d commit abee68c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

manual-test-macos.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
3+
# setup Bash environment
4+
set -eufx -o pipefail
5+
6+
# the only parameter passed in should be of the form: 'disk4'
7+
DEVICE=$1
8+
9+
./format-udf.sh -v
10+
./format-udf.sh -h
11+
./format-udf.sh -b 512 -f "/dev/$DEVICE" "UDF Manual Test"
12+
./format-udf.sh -b 512 -f "$DEVICE" "UDF Manual Test"
13+
./format-udf.sh -b 512 -f -p mbr "$DEVICE" "UDF Manual Test"
14+
./format-udf.sh -b 512 -f -p none "$DEVICE" "UDF Manual Test"
15+
./format-udf.sh -b 512 -f -w quick "$DEVICE" "UDF Manual Test"
16+
./format-udf.sh -b 512 -f -w zero "$DEVICE" "UDF Manual Test"
17+
./format-udf.sh -b 512 -f -w scrub "$DEVICE" "UDF Manual Test"
18+

0 commit comments

Comments
 (0)