diff options
| author | Neal Norwitz <nnorwitz@gmail.com> | 2008-01-26 23:14:17 (GMT) |
|---|---|---|
| committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-01-26 23:14:17 (GMT) |
| commit | 3d785e2c6a0ceeb83747cf46b509cd1c81e689ca (patch) | |
| tree | 4afd2730cacabc2f2ff3d39e439b87adc82ea797 /Lib/bsddb/test/test_compare.py | |
| parent | 7f47d93f52008e38ed09e379e1a3631dce35874f (diff) | |
| download | cpython-3d785e2c6a0ceeb83747cf46b509cd1c81e689ca.zip cpython-3d785e2c6a0ceeb83747cf46b509cd1c81e689ca.tar.gz cpython-3d785e2c6a0ceeb83747cf46b509cd1c81e689ca.tar.bz2 | |
Consistently use tempfile.tempdir for the db_home directory.
Diffstat (limited to 'Lib/bsddb/test/test_compare.py')
| -rw-r--r-- | Lib/bsddb/test/test_compare.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/bsddb/test/test_compare.py b/Lib/bsddb/test/test_compare.py index 59a45ec..5aa8308 100644 --- a/Lib/bsddb/test/test_compare.py +++ b/Lib/bsddb/test/test_compare.py @@ -4,6 +4,7 @@ TestCases for python DB Btree key comparison function. import sys, os, re import test_all +import tempfile from cStringIO import StringIO import unittest @@ -51,7 +52,7 @@ class AbstractBtreeKeyCompareTestCase (unittest.TestCase): def setUp (self): self.filename = self.__class__.__name__ + '.db' - homeDir = os.path.join (os.path.dirname (sys.argv[0]), 'db_home') + homeDir = os.path.join (tempfile.gettempdir(), 'db_home') self.homeDir = homeDir try: os.mkdir (homeDir) |
