Skip to content

Commit e9e8a21

Browse files
committedFeb 5, 2019
Another fix for Slice/errorDetection
1 parent 52f1202 commit e9e8a21

File tree

1 file changed

+6
-5
lines changed
  • cpp/test/Slice/errorDetection

1 file changed

+6
-5
lines changed
 

‎cpp/test/Slice/errorDetection/test.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ def runClientSide(self, current):
1414
testdir = current.testsuite.getPath()
1515
slice2cpp = SliceTranslator("slice2cpp")
1616

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)
2021

2122
files = glob.glob("{0}/*.ice".format(testdir))
2223
files.sort()
@@ -54,7 +55,7 @@ def runClientSide(self, current):
5455
compiler.run(current, args=["forward/Forward.ice", "--output-dir", "tmp"])
5556
current.writeln("ok")
5657
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)
5960

6061
TestSuite(__name__, [ SliceErrorDetectionTestCase() ])

0 commit comments

Comments
 (0)