diff options
Diffstat (limited to 't/self-check-dir.tap')
-rwxr-xr-x | t/self-check-dir.tap | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/t/self-check-dir.tap b/t/self-check-dir.tap index 424367eac..6a0fbd3c3 100755 --- a/t/self-check-dir.tap +++ b/t/self-check-dir.tap @@ -29,7 +29,7 @@ keep_testdirs=; unset keep_testdirs # This needs to be consistent with what $AM_TEST_RUNNER_SHELL # deems to be the current working directory. -cwd=`$AM_TEST_RUNNER_SHELL -c 'pwd'` \ +cwd=$($AM_TEST_RUNNER_SHELL -c 'pwd') \ || fatal_ "can't get current working directory" echo "$cwd" @@ -48,17 +48,17 @@ do_check () do_check 'testdir has the expected path' \ 'unset am_create_testdir' \ - 'case `pwd` in '"$cwd"'/t/_self.dir);; *) Exit 1;; esac' + 'case $(pwd) in '"$cwd"'/t/_self.dir);; *) Exit 1;; esac' do_check 'fully pre-populated testdir' \ 'unset am_create_testdir' \ 'test -f install-sh || Exit 1 test -f configure.ac || Exit 1 - case `pwd` in '"$cwd"'/t/_self.dir) : ;; *) Exit 1;; esac' + case $(pwd) in '"$cwd"'/t/_self.dir) : ;; *) Exit 1;; esac' do_check 'testdir has the expected path' \ 'am_create_testdir=empty' \ - 'case `pwd` in '"$cwd"'/t/_self.dir) : ;; *) Exit 1;; esac' + 'case $(pwd) in '"$cwd"'/t/_self.dir) : ;; *) Exit 1;; esac' do_check 'do not pre-populate testdir' \ 'am_create_testdir=empty' \ @@ -70,6 +70,6 @@ do_check 'do not create nor chdir in testdir' \ test ! -f t/_self.dir || Exit 1 test ! -r t/_self.dir || Exit 1 grep "self-check-dir\.tap" Makefile || Exit 1 - case `pwd` in '"$cwd"') : ;; *) Exit 1;; esac' + case $(pwd) in '"$cwd"') : ;; *) Exit 1;; esac' : |