diff options
author | Thomas White <taw@bitwiz.org.uk> | 2012-02-06 12:35:15 -0800 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:45 +0100 |
commit | af35714ffa45c3c8736520e30315cfb7eb2cc356 (patch) | |
tree | 55eb97862873d19bd6e626b27e8d35aad5a05ed1 /tests | |
parent | e88d38b74704c77e6cb3674d26a4db5a6f6c9160 (diff) |
Fix include paths in tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/gpu_sim_check.c | 8 | ||||
-rw-r--r-- | tests/integration_check.c | 8 | ||||
-rw-r--r-- | tests/list_check.c | 2 | ||||
-rw-r--r-- | tests/pr_gradient_check.c | 8 | ||||
-rw-r--r-- | tests/symmetry_check.c | 4 |
5 files changed, 15 insertions, 15 deletions
diff --git a/tests/gpu_sim_check.c b/tests/gpu_sim_check.c index b006ea8a..fd4677ff 100644 --- a/tests/gpu_sim_check.c +++ b/tests/gpu_sim_check.c @@ -20,10 +20,10 @@ #include "../src/diffraction.h" #include "../src/diffraction-gpu.h" -#include "../src/detector.h" -#include "../src/beam-parameters.h" -#include "../src/utils.h" -#include "../src/symmetry.h" +#include <detector.h> +#include <beam-parameters.h> +#include <utils.h> +#include <symmetry.h> #ifdef HAVE_CLOCK_GETTIME diff --git a/tests/integration_check.c b/tests/integration_check.c index ed11efd7..a9a779e6 100644 --- a/tests/integration_check.c +++ b/tests/integration_check.c @@ -19,10 +19,10 @@ #include <stdlib.h> #include <stdio.h> -#include "../src/image.h" -#include "../src/peaks.h" -#include "../src/utils.h" -#include "../src/beam-parameters.h" +#include <image.h> +#include <peaks.h> +#include <utils.h> +#include <beam-parameters.h> /* The third integration check draws a Poisson background and checks that, on diff --git a/tests/list_check.c b/tests/list_check.c index 1524a1be..a3a8616d 100644 --- a/tests/list_check.c +++ b/tests/list_check.c @@ -18,7 +18,7 @@ #include <stdlib.h> #include <stdio.h> -#include "../src/reflist.h" +#include <reflist.h> struct refltemp { diff --git a/tests/pr_gradient_check.c b/tests/pr_gradient_check.c index ac856131..405fb234 100644 --- a/tests/pr_gradient_check.c +++ b/tests/pr_gradient_check.c @@ -18,10 +18,10 @@ #include <stdlib.h> #include <stdio.h> -#include "../src/image.h" -#include "../src/cell.h" -#include "../src/geometry.h" -#include "../src/reflist.h" +#include <image.h> +#include <cell.h> +#include <geometry.h> +#include <reflist.h> #include "../src/post-refinement.h" diff --git a/tests/symmetry_check.c b/tests/symmetry_check.c index abeeae4e..87a093d4 100644 --- a/tests/symmetry_check.c +++ b/tests/symmetry_check.c @@ -19,8 +19,8 @@ #include <stdio.h> #include <stdarg.h> -#include "../src/symmetry.h" -#include "../src/utils.h" +#include <symmetry.h> +#include <utils.h> static int is_nonmirror_subgroup(SymOpList *holo, SymOpList *mero) |