summaryrefslogtreecommitdiff
path: root/tests/dbtests
diff options
context:
space:
mode:
authorElio Maldonado <emaldona@redhat.com>2015-02-23 22:16:19 +0100
committerElio Maldonado <emaldona@redhat.com>2015-02-23 22:16:19 +0100
commit211f3896c17a9723eaf4e0b747cd8dbbd92829ca (patch)
treef60a6d95d3f759e8b679ae35f0482ed8e664c1b5 /tests/dbtests
parent996add10ce4237caee7dcd603ce7ae9a8ab7f72e (diff)
downloadnss-hg-211f3896c17a9723eaf4e0b747cd8dbbd92829ca.tar.gz
Bug 1128367 - syntax errors in some of the test shell scripts, r=kaie
Diffstat (limited to 'tests/dbtests')
-rwxr-xr-xtests/dbtests/dbtests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dbtests/dbtests.sh b/tests/dbtests/dbtests.sh
index 18c69a01e..7b1ee351f 100755
--- a/tests/dbtests/dbtests.sh
+++ b/tests/dbtests/dbtests.sh
@@ -170,7 +170,7 @@ dbtest_main()
# skipping the next two tests when user is root,
# otherwise they would fail due to rooty powers
- if [ $UID -ne 0 ] then
+ if [ $UID -ne 0 ]; then
${BINDIR}/dbtest -d $RONLY_DIR
ret=$?
if [ $ret -ne 46 ]; then
@@ -181,7 +181,7 @@ dbtest_main()
else
html_passed "Skipping Dbtest r/w in a readonly dir because user is root"
fi
- if [ $UID -ne 0 ] then
+ if [ $UID -ne 0 ]; then
${BINDIR}/certutil -D -n "TestUser" -d .
ret=$?
if [ $ret -ne 255 ]; then