]> Creatis software - gdcm.git/commitdiff
gdcmPython/testSuite.py now cleanly removes temprory generated file.
authorfrog <frog>
Wed, 21 May 2003 14:51:49 +0000 (14:51 +0000)
committerfrog <frog>
Wed, 21 May 2003 14:51:49 +0000 (14:51 +0000)
ChangeLog
gdcmPython/.cvsignore
gdcmPython/testSuite.py

index 1c75af2fbb2303221a791b7c0c478cb8cec9538b..c82d00861fa7b337e62728ca50661fe0800a8a69 100644 (file)
--- 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 <Eric.Boix@creatis.insa-lyon.fr> with JPR
       * src/gdcmHeader>[h/cxx] added gdcmHeader::GetPixelSize()
index 0b2b713498d7c58881f8209327046138fe1fedd8..ab5d103c55fa06ad7415ebd7a8db40542a1b4c20 100644 (file)
@@ -3,6 +3,9 @@ gdcm.py
 gdcm_wrap.cpp
 gdcm_wrap.cxx
 gdcm_wrap.doc
+vtkGdcmReaderPython.cxx
+vtkWrapPythonInit
+vtkGdcmInit.cxx
 Makefile
 Makefile.in
 *.lo
index 238ac033846aababc4e2670623540d7a81e4f2af..695e671fc54f8b346a80fae4e4f3d5a4cb62df8f 100644 (file)
@@ -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()