aboutsummaryrefslogtreecommitdiff
path: root/archive/tests/1
diff options
context:
space:
mode:
Diffstat (limited to 'archive/tests/1')
-rw-r--r--archive/tests/1/a.f9011
-rw-r--r--archive/tests/1/b.f9010
-rw-r--r--archive/tests/1/fpm.toml2
-rw-r--r--archive/tests/1/main.f908
4 files changed, 0 insertions, 31 deletions
diff --git a/archive/tests/1/a.f90 b/archive/tests/1/a.f90
deleted file mode 100644
index a4f64a2..0000000
--- a/archive/tests/1/a.f90
+++ /dev/null
@@ -1,11 +0,0 @@
-module a
-use b, only: g
-implicit none
-
-contains
-
- subroutine f()
- call g()
- end subroutine
-
-end module
diff --git a/archive/tests/1/b.f90 b/archive/tests/1/b.f90
deleted file mode 100644
index 8b57633..0000000
--- a/archive/tests/1/b.f90
+++ /dev/null
@@ -1,10 +0,0 @@
-module b
-implicit none
-
-contains
-
- subroutine g()
- print *, "g()"
- end subroutine
-
-end module
diff --git a/archive/tests/1/fpm.toml b/archive/tests/1/fpm.toml
deleted file mode 100644
index c7d48a4..0000000
--- a/archive/tests/1/fpm.toml
+++ /dev/null
@@ -1,2 +0,0 @@
-[dependencies]
-a = "4.0.0"
diff --git a/archive/tests/1/main.f90 b/archive/tests/1/main.f90
deleted file mode 100644
index d886be3..0000000
--- a/archive/tests/1/main.f90
+++ /dev/null
@@ -1,8 +0,0 @@
-program test1
-use a, only: f
-implicit none
-
-call f()
-
-print *, "TEST1 OK"
-end