From b7b83b2957a5f7272d08db9df5b6f7d4f5817f61 Mon Sep 17 00:00:00 2001 From: frog Date: Wed, 21 May 2003 14:51:49 +0000 Subject: [PATCH] gdcmPython/testSuite.py now cleanly removes temprory generated file. --- ChangeLog | 2 ++ gdcmPython/.cvsignore | 3 +++ gdcmPython/testSuite.py | 1 + 3 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 1c75af2f..c82d0086 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23,6 +23,8 @@ Apparently vtk does not avoid this pitfall: when using both gdcm and vtk (as in vtk/vtkGdcmReader.cxx) this ended up in a collision of various stl members (principally cout...). + * gdcmPython/testSuite.py now cleanly removes temprory generated + file. 2003-05-12 Eric Boix with JPR * src/gdcmHeader>[h/cxx] added gdcmHeader::GetPixelSize() diff --git a/gdcmPython/.cvsignore b/gdcmPython/.cvsignore index 0b2b7134..ab5d103c 100644 --- a/gdcmPython/.cvsignore +++ b/gdcmPython/.cvsignore @@ -3,6 +3,9 @@ gdcm.py gdcm_wrap.cpp gdcm_wrap.cxx gdcm_wrap.doc +vtkGdcmReaderPython.cxx +vtkWrapPythonInit +vtkGdcmInit.cxx Makefile Makefile.in *.lo diff --git a/gdcmPython/testSuite.py b/gdcmPython/testSuite.py index 238ac033..695e671f 100644 --- a/gdcmPython/testSuite.py +++ b/gdcmPython/testSuite.py @@ -531,6 +531,7 @@ class gdcmTestCase(unittest.TestCase): self.assertEqual(ComputeSign, Sign, ("Wrong signature for file %s (got %s, shoud be %s)" % (SourceFileName, ComputeSign, Sign)) ) + os.unlink(TargetFileName) if __name__ == '__main__': unittest.main() -- 2.45.1