diff options
Diffstat (limited to 'test/example_packages/circular_test')
-rw-r--r-- | test/example_packages/circular_test/.gitignore | 1 | ||||
-rw-r--r-- | test/example_packages/circular_test/fpm.toml | 4 | ||||
-rw-r--r-- | test/example_packages/circular_test/src/hello_test.f90 | 12 |
3 files changed, 0 insertions, 17 deletions
diff --git a/test/example_packages/circular_test/.gitignore b/test/example_packages/circular_test/.gitignore deleted file mode 100644 index a007fea..0000000 --- a/test/example_packages/circular_test/.gitignore +++ /dev/null @@ -1 +0,0 @@ -build/* diff --git a/test/example_packages/circular_test/fpm.toml b/test/example_packages/circular_test/fpm.toml deleted file mode 100644 index 56cfa2e..0000000 --- a/test/example_packages/circular_test/fpm.toml +++ /dev/null @@ -1,4 +0,0 @@ -name = "circular_test" - -[dependencies] -circular_example = { path = "../circular_example"} diff --git a/test/example_packages/circular_test/src/hello_test.f90 b/test/example_packages/circular_test/src/hello_test.f90 deleted file mode 100644 index 5a591c6..0000000 --- a/test/example_packages/circular_test/src/hello_test.f90 +++ /dev/null @@ -1,12 +0,0 @@ -module hello_test - use greet_m, only: make_greeting - - implicit none - private - - public :: run_test -contains - subroutine run_test - print *, make_greeting("from test") - end subroutine run_test -end module hello_test |