tests: cosmetic changes in t/extra-sources.sh
[platform/upstream/automake.git] / t / tap-global-log.sh
old mode 100755 (executable)
new mode 100644 (file)
index 8267a3d..b303b4a
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2011-2012 Free Software Foundation, Inc.
+# Copyright (C) 2011-2013 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -17,9 +17,9 @@
 # TAP support:
 #  - which log files get copied in the global log?
 
-. ./defs || Exit 1
+. test-init.sh
 
-. "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
+. tap-setup.sh
 
 cat > ok.test << 'END'
 1..5
@@ -101,11 +101,10 @@ cat > skipall.test << 'END'
 1..0 # SKIP all
 END
 
-# We don't care about the exit status of "make check" here.
-TESTS="$(echo *.test)" $MAKE -e check || :
+run_make -e IGNORE TESTS="$(echo *.test)" check
 cat test-suite.log
 
-grep ':.*ok|not seen' test-suite.log && Exit 1
+grep ':.*ok|not seen' test-suite.log && exit 1
 
 for s in skip todo fail xpass bail error; do
   $FGREP "::$s::" test-suite.log
@@ -117,7 +116,7 @@ test_suite_contents=$(cat test-suite.log)
 hodgepodge_contents=$(cat hodgepodge)
 case $test_suite_contents in
   *"$hodgepodge_contents"*) ;;
-  *) Exit 1;;
+  *) exit 1;;
 esac
 
 :