tests init: don't automatically re-execute tests with a POSIX shell
[platform/upstream/automake.git] / t / self-check-dir.tap
1 #! /bin/sh
2 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Sanity check for the automake testsuite.
18 # Check that tests using './defs' create a proper temporary directory,
19 # and run in it.  Also check that we can prevent the pre-population
20 # and the creation of such directory if we want.
21
22 am_create_testdir=no
23 . ./defs || exit 99
24
25 plan_ 5
26
27 keep_testdirs=; unset keep_testdirs
28
29 # This needs to be consistent with what $AM_TEST_RUNNER_SHELL
30 # deems to be the current working directory.
31 cwd=$($AM_TEST_RUNNER_SHELL -c 'pwd') \
32   || fatal_ "can't get current working directory"
33 echo "$cwd"
34
35 do_check ()
36 {
37   rm -rf _self.dir || framework_failure_ "cleaning up _self.dir"
38   command_ok_ "$1 [$2]" $AM_TEST_RUNNER_SHELL -c "
39     $2
40     . ./defs || exit 99
41     # Don't fail if 'ls -l' fails; avoids possible racy spurious failures.
42     pwd; ls -l || : # For debugging.
43     $3
44   " t/_self.sh
45 }
46
47 do_check 'testdir has the expected path' \
48          'unset am_create_testdir' \
49          'case $(pwd) in '"$cwd"'/t/_self.dir);; *) exit 1;; esac'
50
51 do_check 'fully pre-populated testdir' \
52          'unset am_create_testdir' \
53          'test -f install-sh || exit 1
54           test -f configure.ac || exit 1
55           case $(pwd) in '"$cwd"'/t/_self.dir) : ;; *) exit 1;; esac'
56
57 do_check 'testdir has the expected path' \
58          'am_create_testdir=empty' \
59          'case $(pwd) in '"$cwd"'/t/_self.dir) : ;; *) exit 1;; esac'
60
61 do_check 'do not pre-populate testdir' \
62          'am_create_testdir=empty' \
63          'ls -a | grep -v "^\\.\\{1,2\\}$" | grep . && exit 1; :'
64
65 do_check 'do not create nor chdir in testdir' \
66          'am_create_testdir=no' \
67          'test ! -e t/_self.dir || exit 1
68           grep "self-check-dir\.tap" Makefile || exit 1
69           case $(pwd) in '"$cwd"') : ;; *) exit 1;; esac'
70
71 :