20 lines
298 B
Bash
Executable File
20 lines
298 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function test_partitioning()
|
|
{
|
|
local img
|
|
img=$(mktemp -u)
|
|
dd if=/dev/zero of="$img" bs=1M seek=16384 count=0
|
|
sudo setup_drive "$img"
|
|
sudo parted -ms "$img" -- print
|
|
rm -f "$img"
|
|
}
|
|
|
|
function oneTimeSetUp()
|
|
{
|
|
. drive.inc
|
|
}
|
|
|
|
# Load shUnit2.
|
|
. /usr/bin/shunit2
|