File tree 1 file changed +6
-5
lines changed
cpp/test/Slice/errorDetection
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,10 @@ def runClientSide(self, current):
14
14
testdir = current .testsuite .getPath ()
15
15
slice2cpp = SliceTranslator ("slice2cpp" )
16
16
17
- if os .path .exists ("tmp" ):
18
- shutil .rmtree ("tmp" )
19
- os .mkdir ("tmp" )
17
+ outdir = "{0}/tmp" .format (testdir )
18
+ if os .path .exists (outdir ):
19
+ shutil .rmtree (outdir )
20
+ os .mkdir (outdir )
20
21
21
22
files = glob .glob ("{0}/*.ice" .format (testdir ))
22
23
files .sort ()
@@ -54,7 +55,7 @@ def runClientSide(self, current):
54
55
compiler .run (current , args = ["forward/Forward.ice" , "--output-dir" , "tmp" ])
55
56
current .writeln ("ok" )
56
57
finally :
57
- if os .path .exists ("{0}/tmp" . format ( testdir ) ):
58
- shutil .rmtree ("{0}/tmp" . format ( testdir ) )
58
+ if os .path .exists (outdir ):
59
+ shutil .rmtree (outdir )
59
60
60
61
TestSuite (__name__ , [ SliceErrorDetectionTestCase () ])
You can’t perform that action at this time.
0 commit comments