From a6f2a93c40941f2c63d493b1546a4d6bcb422e70 Mon Sep 17 00:00:00 2001 From: Vicente Adolfo Bolea Sanchez Date: Thu, 19 Jan 2023 17:08:17 +0900 Subject: [PATCH] testing: remove vtkm/cont/testing relative path --- vtkm/cont/testing/MakeTestDataSet.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/vtkm/cont/testing/MakeTestDataSet.h b/vtkm/cont/testing/MakeTestDataSet.h index 0cc41d1ad..10c503930 100644 --- a/vtkm/cont/testing/MakeTestDataSet.h +++ b/vtkm/cont/testing/MakeTestDataSet.h @@ -11,8 +11,15 @@ #ifndef vtk_m_cont_testing_MakeTestDataSet_h #define vtk_m_cont_testing_MakeTestDataSet_h +// The relative path of Testing.h is unknown, the only thing that we can assume +// is that it is located in the same directory as this header file. This is +// because the testing directory is reserved for test executables and not +// libraries, the vtkm_cont_testing module has to put this file in +// vtkm/cont/testlib instead of vtkm/cont/testing where you normally would +// expect it. +#include "Testing.h" + #include -#include #include