diff options
author | John S. Urban <urbanjost@comcast.net> | 2021-07-09 16:03:46 -0400 |
---|---|---|
committer | John S. Urban <urbanjost@comcast.net> | 2021-07-09 16:03:46 -0400 |
commit | 8b3b3f088700ce0270932762855978f2fec1584c (patch) | |
tree | b7f5fc1c355500ea92ca920c3465a328fc848b13 /src | |
parent | 9aae783e6877a8648d93a1e7b95459e6967f8c6b (diff) | |
download | fpm-8b3b3f088700ce0270932762855978f2fec1584c.tar.gz fpm-8b3b3f088700ce0270932762855978f2fec1584c.zip |
remove # from tests
Diffstat (limited to 'src')
-rw-r--r-- | src/fpm/manifest/example.f90 | 2 | ||||
-rw-r--r-- | src/fpm/manifest/executable.f90 | 2 | ||||
-rw-r--r-- | src/fpm/manifest/package.f90 | 2 | ||||
-rw-r--r-- | src/fpm/manifest/test.f90 | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/fpm/manifest/example.f90 b/src/fpm/manifest/example.f90 index caf1e1e..56f64c8 100644 --- a/src/fpm/manifest/example.f90 +++ b/src/fpm/manifest/example.f90 @@ -64,7 +64,7 @@ contains end if if(.not.is_fortran_name(to_fortran_name(self%name)))then call syntax_error(error, 'manifest file syntax error: example name must be composed only of & - &alphanumerics, "-" and "_" and start with a letter') + &alphanumerics, "-" and "_" and start with a letter::'//self%name) return endif call get_value(table, "source-dir", self%source_dir, "example") diff --git a/src/fpm/manifest/executable.f90 b/src/fpm/manifest/executable.f90 index d376263..9447687 100644 --- a/src/fpm/manifest/executable.f90 +++ b/src/fpm/manifest/executable.f90 @@ -74,7 +74,7 @@ contains end if if(.not.is_fortran_name(to_fortran_name(self%name)))then call syntax_error(error, 'manifest file syntax error: executable name must be composed only of & - &alphanumerics, "-" and "_" and start with a letter') + &alphanumerics, "-" and "_" and start with a letter::'//self%name) return endif call get_value(table, "source-dir", self%source_dir, "app") diff --git a/src/fpm/manifest/package.f90 b/src/fpm/manifest/package.f90 index 0150553..fd5e873 100644 --- a/src/fpm/manifest/package.f90 +++ b/src/fpm/manifest/package.f90 @@ -134,7 +134,7 @@ contains end if if(.not.is_fortran_name(to_fortran_name(self%name)))then call syntax_error(error, 'manifest file syntax error: package name must be composed only of & - &alphanumerics, "-" and "_" and start with a letter') + &alphanumerics, "-" and "_" and start with a letter::'//self%name) return endif diff --git a/src/fpm/manifest/test.f90 b/src/fpm/manifest/test.f90 index 9912414..a7e5e88 100644 --- a/src/fpm/manifest/test.f90 +++ b/src/fpm/manifest/test.f90 @@ -64,7 +64,7 @@ contains end if if(.not.is_fortran_name(to_fortran_name(self%name)))then call syntax_error(error, 'manifest file syntax error: test name must be composed only of & - &alphanumerics, "-" and "_" and start with a letter') + &alphanumerics, "-" and "_" and start with a letter ::'//self%name) return endif call get_value(table, "source-dir", self%source_dir, "test") |