11 lines
288 B
Bash
Executable File
11 lines
288 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
acceptance_dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
|
. "$acceptance_dir/harness.sh"
|
|
acceptance_init
|
|
acceptance_require_commands "the administrator acceptance test" expect
|
|
acceptance_copy_disk admin
|
|
|
|
exec expect "$acceptance_dir/admin.exp" "$runner" "$test_disk"
|