#!/bin/sh

UNITTEST=yes
. ../smart_spindown.conf
. ../smart_spindown
trap - 0 1 2 3 6 15

assert()
{
  echo -e "\n\033[31;1m!!\033[0m $*" >&2
  exit 1
}

# Override the smart_spindown log_and_die function.
log_and_die()
{
  assert $*
}

