summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/berk_db/test/ChangeLog4
-rw-r--r--src/util/berk_db/test/run.test5
2 files changed, 8 insertions, 1 deletions
diff --git a/src/util/berk_db/test/ChangeLog b/src/util/berk_db/test/ChangeLog
index 791864e46..684859fcb 100644
--- a/src/util/berk_db/test/ChangeLog
+++ b/src/util/berk_db/test/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jun 28 00:04:07 1995 Mark Eichin <eichin@cygnus.com>
+
+ * run.test: look in /usr/share/lib/dict/words to find the words
+ file under SGI Irix 5.
Fri Jun 16 16:57:24 EDT 1995 Paul Park (pjpark@mit.edu)
* run.test - Remove argument processing loop and only do the first one
diff --git a/src/util/berk_db/test/run.test b/src/util/berk_db/test/run.test
index e8316b8e9..919d5a0b6 100644
--- a/src/util/berk_db/test/run.test
+++ b/src/util/berk_db/test/run.test
@@ -16,7 +16,10 @@ main()
DICT=/usr/share/dict/words
elif [ -f /usr/dict/words ]; then
DICT=/usr/dict/words
- else
+ elif [ -f /usr/share/lib/dict/words ]; then
+ # SGI Irix 5.x
+ DICT=/usr/share/lib/dict/words
+ else
echo 'run.test: no dictionary'
exit 1
fi