#!/bin/sh testname=`basename "$0"` test_description="Check failing if unexistent \$1 is touched" . $SHARNESS_TEST_SRCDIR/sharness.sh export REDO_TOP_DIR="`pwd`" REDO_NO_PROGRESS=1 echo touch \$1 > foo.do test_expect_success "it fails" 'redo foo ; [ $? = 1 ]' test_done