@@ -6,12 +6,12 @@ program test_assert_macros
66 print * ," The call_assert macro"
77
88#define DEBUG
9- #include " ../../src/assert/ assert_macros.h"
9+ #include " assert_macros.h"
1010 call_assert(1 == 1 )
1111 print * ," passes on not error-terminating when an assertion expression evaluating to .true. is the only argument"
1212
1313#undef DEBUG
14- #include " ../../src/assert/ assert_macros.h"
14+ #include " assert_macros.h"
1515 call_assert(.false. )
1616 print * ," passes on being removed by the preprocessor when DEBUG is undefined" // new_line(' ' )
1717
@@ -20,12 +20,12 @@ program test_assert_macros
2020 print * ," The call_assert_describe macro"
2121
2222#define DEBUG
23- #include " ../../src/assert/ assert_macros.h"
23+ #include " assert_macros.h"
2424 call_assert_describe(.true. , " .true." )
2525 print * ," passes on not error-terminating when assertion = .true. and a description is present"
2626
2727#undef DEBUG
28- #include " ../../src/assert/ assert_macros.h"
28+ #include " assert_macros.h"
2929 call_assert_describe(.false. , " " )
3030 print * ," passes on being removed by the preprocessor when DEBUG is undefined" // new_line(' ' )
3131
@@ -34,12 +34,12 @@ program test_assert_macros
3434 print * ," The call_assert_diagnose macro"
3535
3636#define DEBUG
37- #include " ../../src/assert/ assert_macros.h"
37+ #include " assert_macros.h"
3838 call_assert_diagnose(.true. , " .true." , diagnostic_data= 1 )
3939 print * ," passes on not error-terminating when assertion = .true. and description and diagnostic_data are present"
4040
4141#undef DEBUG
42- #include " ../../src/assert/ assert_macros.h"
42+ #include " assert_macros.h"
4343 call_assert_describe(.false. , " " )
4444 print * ," passes on being removed by the preprocessor when DEBUG is undefined"
4545
0 commit comments