RTK/TestingDatasets

From Openrtk
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This section describes how to add/edit datasets for testing purposes for RTK. Datasets are not stored in the GIT repository for efficiency and also to avoid having large history due to binary files. Instead the files are stored on a Girder instance. Here's the recipe to add new datasets:

  1. Register/Login to Girder hosted at Kitware: http://data.kitware.com
  2. Locate the RTK collection: https://data.kitware.com/#collection/5a7706878d777f0649e04776
  3. Upload the new datasets in the appropriate folder. If you don't have the necessary privileges please email the mailing list
  4. In the GIT repository, add in testing/Data a file with the exact filename of the original file but with the .md5 extension. Inside that file put the md5sum of the file on Girder.
  5. When adding a test use the new macro "RTK_ADD_TEST" instead of "ADD_TEST" and specify the datasets you want CTest to download by appending the data to 'DATA{}'. For example:
 RTK_ADD_TEST(NAME rtkimagxtest 
              COMMAND ${EXECUTABLE_OUTPUT_PATH}/rtkimagxtest
              DATA{Data/Input/ImagX/raw.xml,raw.raw}
              DATA{Data/Baseline/ImagX/attenuation.mha})