diff options
author | Marc Laukien <marc@zeroc.com> | 2001-12-09 19:54:51 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-12-09 19:54:51 +0000 |
commit | ff2cdbada1355055b60e36a53d8bdb160abacc0a (patch) | |
tree | ce00902f17e79811f65c149354584e8fed440231 /cpp/config/TestUtil.py | |
parent | fixes (diff) | |
download | ice-ff2cdbada1355055b60e36a53d8bdb160abacc0a.tar.bz2 ice-ff2cdbada1355055b60e36a53d8bdb160abacc0a.tar.xz ice-ff2cdbada1355055b60e36a53d8bdb160abacc0a.zip |
lots of fixes
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 9c0be05ef95..7576bfcfbe5 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -142,7 +142,9 @@ def collocatedTest(toplevel, name): print output def cleanDbDir(path): + files = os.listdir(path) + for filename in files: if filename != "CVS" and filename != ".dummy": fullpath = os.path.join(path, filename); |