]> Creatis software - gdcm.git/commitdiff
Uncomment
authorjpr <jpr>
Wed, 2 Feb 2005 12:02:33 +0000 (12:02 +0000)
committerjpr <jpr>
Wed, 2 Feb 2005 12:02:33 +0000 (12:02 +0000)
# Add a special test that requires dciodvfy from dicom3tools
INCLUDE(${GDCM_SOURCE_DIR}/CMake/FindDicom3Tools.cmake)
erroneouly commented out

Testing/CMakeLists.txt
Testing/TestChangeHeader.cxx

index 556b92ae78e46186bae3392d4d2b1a0afc17f5eb..b3519641382c122ab679e5b4329f6f8c325ed306 100644 (file)
@@ -152,7 +152,7 @@ SET(BLACK_LIST
   )
 
 # Add a special test that requires dciodvfy from dicom3tools
-#INCLUDE(${GDCM_SOURCE_DIR}/CMake/FindDicom3Tools.cmake)
+INCLUDE(${GDCM_SOURCE_DIR}/CMake/FindDicom3Tools.cmake)
 
 # This is a GLOB expression, change it into a list separated with a comma and \n
 SET(GDCM_DATA_IMAGES)
index e4898a0c429de486d4d3b507543aefc27c32c75a..9739ebaec142c04e642a3567f4598cf99dbc10bc 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: TestChangeHeader.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/02/02 10:05:26 $
-  Version:   $Revision: 1.33 $
+  Date:      $Date: 2005/02/02 12:02:33 $
+  Version:   $Revision: 1.34 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -42,7 +42,7 @@ int TestChangeHeader(int argc, char *argv[])
    // We suppose the DICOM Entries of the second file *does* exist !
 
    std::string nbFrames = f2->GetHeader()->GetEntryValue(0x0028, 0x0008);
-   if(nbFrames != "gdcm::Unfound")
+   if(nbFrames != GDCM_UNFOUND)
    {
       f1->GetHeader()->Insert( nbFrames, 0x0028, 0x0008);
    }
@@ -79,7 +79,7 @@ int TestChangeHeader(int argc, char *argv[])
    printf ("dataSize %d\n",dataSize);
    uint8_t *imageData= f2->GetImageData();
 
-// TODO : Why don't we merge theese 2 functions ?
+// TODO : Why don't we merge these 2 functions ?
 
    f1->SetImageData(imageData,dataSize);