#!/bin/sh
# test all the basic stuff

. $TESTDIR/src/functions.sh
echo "cleaning spool dirs... "; clean-spools
echon "waiting for any active jobs... "; wait-for-daemon; echo

if [ $# -gt 0 ] ; then
    do_test $*
    exit 0
fi

do_test t_basic		banner
do_test t_if		banner,if
do_test t_of		of,banner
do_test t_if_of		of,banner,if

do_test t_pipe		lp,banner
do_test t_if_pipe	lp,banner,if
do_test t_of_pipe	lp,of,banner
do_test t_if_of_pipe	lp,of,banner,if

