aboutsummaryrefslogtreecommitdiff
path: root/archive/tests/1
diff options
context:
space:
mode:
authorLaurence Kedward <laurence.kedward@bristol.ac.uk>2020-12-09 16:16:23 +0000
committerGitHub <noreply@github.com>2020-12-09 16:16:23 +0000
commit4eba2e0ee99d8d2ace1173d149ad2cf16910a705 (patch)
treee85cf37b2a1aedf23c1314e5102735f55abb8d36 /archive/tests/1
parenta062554e80c3718881c1be8edb0e7220e37fbd23 (diff)
parentb384031eb4099c66805156d0fa65e67a650a13e0 (diff)
downloadfpm-4eba2e0ee99d8d2ace1173d149ad2cf16910a705.tar.gz
fpm-4eba2e0ee99d8d2ace1173d149ad2cf16910a705.zip
Merge pull request #281 from awvwgk/cleanup-archive
Cleanup: Remove archived Rust prototype
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