summaryrefslogtreecommitdiff
path: root/php
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2008-09-12 16:27:17 -0700
committerRuss Allbery <rra@stanford.edu>2008-09-12 16:27:17 -0700
commit69d3d7f119944f7e848d7bc6060d514b1dbb392e (patch)
tree4846c934e365b19a62dadceee09f4ba3b1deb86e /php
parent1ac3a809fed572f7a20a530ec18e363e198322d3 (diff)
PHP: make the test wrapper quieter with no Kerberos
When there was no Kerberos configuration, the test wrapper was removing files that were never created. Do that with rm -f to avoid the spurious error messages.
Diffstat (limited to 'php')
-rwxr-xr-xphp/test-wrapper2
1 files changed, 1 insertions, 1 deletions
diff --git a/php/test-wrapper b/php/test-wrapper
index 350a83c..ebc2205 100755
--- a/php/test-wrapper
+++ b/php/test-wrapper
@@ -96,7 +96,7 @@ env LD_LIBRARY_PATH="$top"/client/.libs make test
status=$?
# Kill the remctl server.
-rm remctl-test.cache remctl-test.princ
+rm -f remctl-test.cache remctl-test.princ
if [ "$status" = 0 ] ; then
rm -f remctl-test.out
fi