summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2014-02-11 22:16:56 -0500
committerGreg Hudson <ghudson@mit.edu>2014-02-11 23:07:21 -0500
commitd21a86e47a7cda29225013e08d060095b94b2ee7 (patch)
treeb274dfba595dd2c3b659418ac60ad83434b053f7 /src
parent3bedfe7c3724b0d22c72d1684f1cf76cfb600fdd (diff)
downloadkrb5-d21a86e47a7cda29225013e08d060095b94b2ee7.tar.gz
krb5-d21a86e47a7cda29225013e08d060095b94b2ee7.tar.xz
krb5-d21a86e47a7cda29225013e08d060095b94b2ee7.zip
Don't use system dictionary files for DB2 tests
The system dictionary may contain entries with punctuation, which can confuse the shell. It's more predictable to always use the word list from the source tree. ticket: 7860 status: open
Diffstat (limited to 'src')
-rw-r--r--src/plugins/kdb/db2/libdb2/test/run.test8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plugins/kdb/db2/libdb2/test/run.test b/src/plugins/kdb/db2/libdb2/test/run.test
index 7d9f0feb75..81db7f7f1c 100644
--- a/src/plugins/kdb/db2/libdb2/test/run.test
+++ b/src/plugins/kdb/db2/libdb2/test/run.test
@@ -15,14 +15,6 @@ main()
if [ \! -z "$WORDLIST" -a -f "$WORDLIST" ]; then
DICT=$WORDLIST
- elif [ -f /usr/local/lib/dict/words ]; then
- DICT=/usr/local/lib/dict/words
- elif [ -f /usr/share/dict/words ]; then
- DICT=/usr/share/dict/words
- elif [ -f /usr/dict/words ]; then
- DICT=/usr/dict/words
- elif [ -f /usr/share/lib/dict/words ]; then
- DICT=/usr/share/lib/dict/words
elif [ -f $srcdir/../test/dictionary ]; then
DICT=`cd $srcdir/../test && pwd`/dictionary
else