diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2007-11-26 22:31:06 +0100 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2007-11-26 22:31:06 +0100 |
commit | f57bd856b2a0e6ecd96fd34f112d28de18a9f212 (patch) | |
tree | bd06c31fea5ec51b4608167fbb07a62db6392fd7 /tests/python10.test | |
parent | a7ef9660176bc5927a39fc519abbc03f13c4cbf9 (diff) | |
download | automake-f57bd856b2a0e6ecd96fd34f112d28de18a9f212.tar.gz |
Quote file names in tests that can be absolute.
* tests/auxdir.test, tests/check3.test, tests/check4.test,
tests/compile.test, tests/cond33.test, tests/condhook.test,
tests/distdir.test, tests/dollar.test, tests/empty.test,
tests/gnits2.test, tests/gnits3.test, tests/include2.test,
tests/insthook.test, tests/java.test, tests/libtool7.test,
tests/lisp4.test, tests/lisp5.test, tests/lisp6.test,
tests/ltcond.test, tests/ltconv.test, tests/mkinst2.test,
tests/multlib.test, tests/nobase.test, tests/nodist2.test,
tests/obsolete.test, tests/pr287.test, tests/pr300-lib.test,
tests/pr300-ltlib.test, tests/pr300-prog.test, tests/python10.test,
tests/python3.test, tests/strip.test, tests/transform.test,
tests/txinfo13.test, tests/txinfo19.test, tests/txinfo22.test,
tests/txinfo23.test, tests/txinfo26.test, tests/txinfo27.test:
Likewise.
Diffstat (limited to 'tests/python10.test')
-rwxr-xr-x | tests/python10.test | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/tests/python10.test b/tests/python10.test index f240bd060..ba83b82b2 100755 --- a/tests/python10.test +++ b/tests/python10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2007 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -60,28 +60,28 @@ mkdir build cd build ../configure --prefix="$inst" $MAKE install -test -f $inst/your/two.py -test -f $inst/your/two.pyc -test -f $inst/your/two.pyo -test ! -f $inst/my/one.py -test ! -f $inst/my/one.pyc -test ! -f $inst/my/one.pyo +test -f "$inst/your/two.py" +test -f "$inst/your/two.pyc" +test -f "$inst/your/two.pyo" +test ! -f "$inst/my/one.py" +test ! -f "$inst/my/one.pyc" +test ! -f "$inst/my/one.pyo" $MAKE uninstall -test ! -f $inst/your/two.py -test ! -f $inst/your/two.pyc -test ! -f $inst/your/two.pyo +test ! -f "$inst/your/two.py" +test ! -f "$inst/your/two.pyc" +test ! -f "$inst/your/two.pyo" ../configure --prefix="$inst" one=1 $MAKE install -test ! -f $inst/your/two.py -test ! -f $inst/your/two.pyc -test ! -f $inst/your/two.pyo -test -f $inst/my/one.py -test -f $inst/my/one.pyc -test -f $inst/my/one.pyo +test ! -f "$inst/your/two.py" +test ! -f "$inst/your/two.pyc" +test ! -f "$inst/your/two.pyo" +test -f "$inst/my/one.py" +test -f "$inst/my/one.pyc" +test -f "$inst/my/one.pyo" $MAKE uninstall -test ! -f $inst/my/one.py -test ! -f $inst/my/one.pyc -test ! -f $inst/my/one.pyo +test ! -f "$inst/my/one.py" +test ! -f "$inst/my/one.pyc" +test ! -f "$inst/my/one.pyo" $MAKE disttest |