From 6297e11e84f609c08384a83f9bd1e61d51de740a Mon Sep 17 00:00:00 2001 From: Brad Richardson Date: Fri, 29 May 2020 19:58:34 -0700 Subject: Impelement test/executable specific dependencies - with the possibility of them being "circular", meaning if one of them depends on the current library, it will still work --- circular_example/tests/main.f90 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 circular_example/tests/main.f90 (limited to 'circular_example/tests/main.f90') diff --git a/circular_example/tests/main.f90 b/circular_example/tests/main.f90 new file mode 100644 index 0000000..5b7d803 --- /dev/null +++ b/circular_example/tests/main.f90 @@ -0,0 +1,7 @@ +program run_tests + use hello_test, only: run_test + + implicit none + + call run_test +end program run_tests -- cgit v1.2.3