tests: rework tests on AM_PATH_PYTHON
[platform/upstream/automake.git] / t / tap-plan-whitespace.sh
index 7bdb4dc..5cc198f 100755 (executable)
 # TAP support:
 #  - plan line with trailing whitespace is recognized and handled correctly
 
-am_parallel_tests=yes
-. ./defs || Exit 1
+. ./defs || exit 1
 
-. "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
+. tap-setup.sh
 
 sed 's/\$$//' > foo.test <<END
 1..2 $
@@ -33,7 +32,7 @@ cat > bar.test <<END
 ok 1
 END
 
-TESTS='foo.test bar.test' $MAKE -e check >stdout || { cat stdout; Exit 1; }
+TESTS='foo.test bar.test' $MAKE -e check >stdout || { cat stdout; exit 1; }
 cat stdout
 
 count_test_results total=3 pass=3 fail=0 error=0 xpass=0 xfail=0 skip=0