diff -r c7c26511138f -r 7c4a911dc066 buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_buildtools.py --- a/buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_buildtools.py Wed Jun 16 16:51:40 2010 +0300 +++ b/buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_buildtools.py Fri Aug 13 14:59:05 2010 +0300 @@ -30,7 +30,8 @@ def setUp(self): """called before all tests run to setup variables etc.""" self.temp = "temp" - os.makedirs(self.temp) + if not os.path.exists(self.temp): + os.makedirs(self.temp) def tearDown(self): """ called after tests have run to clear anything left hanging around"""