#!/bin/bash jat__pstarts "collect output" jat__cmd -h "run ls" \ eval "ls >ls.out 2>ls.err" jat__pend jat__pstarts "verify output" jat__cmd -h "stdout is present" \ test -s "ls.out" jat__cmd -h "stderr is empty" -S 1 \ test -s "ls.err" jat__pend jat__pstartc "clean up" jat__cmd rm "ls.out" "ls.err" jat__pend