]> Creatis software - gdcm.git/blob - Testing/TestBug.cxx
ENH: Adding automatic testing
[gdcm.git] / Testing / TestBug.cxx
1 // The following crashes on Win32
2 #include "gdcm.h"
3
4 int bug1(int argc, char* argv[])
5 {  
6         gdcmHeader* e1;
7         
8         if (argc > 1)
9                 e1 = new gdcmHeader(argv[1]);
10         else
11                 e1 = new gdcmHeader("test.acr");
12         e1->PrintPubDict();
13
14   return 0;
15 }
16
17
18