diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-11-27 15:19:50 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-11-27 15:19:50 (GMT) |
commit | fc344fa4e593ae5ca82693fd02213fecb8dce953 (patch) | |
tree | f39fe7d27a32d005629700a912399e5c966dbb8c /src/tests/md_openmp.c | |
parent | 28edd851f8b7675fdadb51ebf906ae9cf8494dc8 (diff) |
Removed generated include files defining dirs of example files.
Diffstat (limited to 'src/tests/md_openmp.c')
-rw-r--r-- | src/tests/md_openmp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tests/md_openmp.c b/src/tests/md_openmp.c index f9942ba..449810d 100644 --- a/src/tests/md_openmp.c +++ b/src/tests/md_openmp.c @@ -6,7 +6,6 @@ # include <math.h> # include <omp.h> # include "tng_io.h" -#include "tng_io_testing.h" int main (); void compute ( int np, int nd, double pos[], double vel[], @@ -128,8 +127,8 @@ int main () printf(" Cannot init trajectory.\n"); exit(1); } -#ifdef EXAMPLE_FILES_DIR - tng_output_file_set(traj, EXAMPLE_FILES_DIR "tng_md_out.tng"); +#ifdef TNG_EXAMPLE_FILES_DIR + tng_output_file_set(traj, TNG_EXAMPLE_FILES_DIR "tng_md_out.tng"); #else tng_output_file_set(traj, "/tmp/tng_md_out.tng"); #endif |