diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-07-06 11:49:11 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-07-06 11:49:11 -0400 |
commit | 3664d6ed1b739ba663fd074cb8203278707d07c2 (patch) | |
tree | eee273e4564d049f0b7498b822023da28baad4fd /java/config/TestUtil.py | |
parent | Added comment for bug fix 2286 (diff) | |
download | ice-3664d6ed1b739ba663fd074cb8203278707d07c2.tar.bz2 ice-3664d6ed1b739ba663fd074cb8203278707d07c2.tar.xz ice-3664d6ed1b739ba663fd074cb8203278707d07c2.zip |
Speed up by avoiding disk syncs
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index 5150c5b8eaa..cae74fc3264 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -523,5 +523,5 @@ def collocatedTest(): collocatedTestWithOptions("") def cleanDbDir(path): - for filename in [ os.path.join(path, f) for f in os.listdir(path) if f != ".gitignore"]: + for filename in [ os.path.join(path, f) for f in os.listdir(path) if f != ".gitignore" and f != "DB_CONFIG" ]: os.remove(filename) |