From b86c74bef761ec48ff17cf043a26b11b9bf3954b Mon Sep 17 00:00:00 2001 From: Brad Richardson Date: Wed, 8 Jul 2020 11:24:41 -0700 Subject: Fix bug with case in program source file name. --- test/example_packages/hello_complex/apps/say_hello/say_Hello.f90 | 7 +++++++ test/example_packages/hello_complex/apps/say_hello/say_hello.f90 | 7 ------- 2 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 test/example_packages/hello_complex/apps/say_hello/say_Hello.f90 delete mode 100644 test/example_packages/hello_complex/apps/say_hello/say_hello.f90 (limited to 'test/example_packages/hello_complex/apps') diff --git a/test/example_packages/hello_complex/apps/say_hello/say_Hello.f90 b/test/example_packages/hello_complex/apps/say_hello/say_Hello.f90 new file mode 100644 index 0000000..cf4a742 --- /dev/null +++ b/test/example_packages/hello_complex/apps/say_hello/say_Hello.f90 @@ -0,0 +1,7 @@ +program say_Hello + use greet_m, only: make_greeting + + implicit none + + print *, make_greeting("World") +end program say_Hello diff --git a/test/example_packages/hello_complex/apps/say_hello/say_hello.f90 b/test/example_packages/hello_complex/apps/say_hello/say_hello.f90 deleted file mode 100644 index cc648f2..0000000 --- a/test/example_packages/hello_complex/apps/say_hello/say_hello.f90 +++ /dev/null @@ -1,7 +0,0 @@ -program say_hello - use greet_m, only: make_greeting - - implicit none - - print *, make_greeting("World") -end program say_hello -- cgit v1.2.3