]> Creatis software - gdcm.git/commitdiff
ENH: Rearchitecture the test to test one file at a time
authormalaterre <malaterre>
Fri, 21 Oct 2005 15:16:22 +0000 (15:16 +0000)
committermalaterre <malaterre>
Fri, 21 Oct 2005 15:16:22 +0000 (15:16 +0000)
Testing/TestAllVM.cxx

index 3b108d14b659f2839ce3c5da19269bdd1492d90f..425567e2ced1cb50dd08ca86bb48ba09646033b6 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: TestAllVM.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/10/21 15:02:31 $
-  Version:   $Revision: 1.4 $
+  Date:      $Date: 2005/10/21 15:16:22 $
+  Version:   $Revision: 1.5 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 //Generated file:
 #include "gdcmDataImages.h"
 
-int TestAllVM(int, char *[])
+int DoTheVMTest(std::string const &filename)
 {
-   int i = 0;
-
-   while( gdcmDataImages[i] != 0 )
-   {
-      std::string filename = GDCM_DATA_ROOT;
-      filename += "/";
-      filename += gdcmDataImages[i];
-
       gdcm::File file;
-      file.SetLoadMode( gdcm::LD_NOSHADOW );
+      // Do not test unknow VM ...
+      file.SetLoadMode( gdcm::LD_NOSHADOW | gdcm::LD_NOSHADOWSEQ );
       file.SetFileName( filename );
       if( !file.Load() ) //would be really bad...
         return 1;
@@ -60,9 +53,33 @@ int TestAllVM(int, char *[])
          d = file.GetNextEntry();
       }
 
+      return 0;
+}
+
+int TestAllVM(int argc, char *argv[])
+{
+   int i = 0;
+   if( argc >= 2 )
+     {
+     const char *filename = argv[1];
+     if( DoTheVMTest( filename ) )
+       return 1;
+     return 0;
+     }
+   // else
+
+   while( gdcmDataImages[i] != 0 )
+   {
+      std::string filename = GDCM_DATA_ROOT;
+      filename += "/";
+      filename += gdcmDataImages[i];
+
+      if( DoTheVMTest( filename ) )
+        return 1;
       i++;
       std::cerr << std::endl; // skip a line after each file
    }
+
    return 0;
 }