summaryrefslogtreecommitdiffstats
path: root/meta-selftest/recipes-test/fortran/files/hello.f95
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-06-25 15:52:02 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-27 12:20:36 +0100
commitf0c76ce18c874ffc9ca036eb1f7709ab9536059a (patch)
treed45b93ccaaa846f9af39ce119c735252883e303d /meta-selftest/recipes-test/fortran/files/hello.f95
parentf5379ec0d0942fff2f4c6a4ddceefc8a4fb2107d (diff)
downloadpoky-f0c76ce18c874ffc9ca036eb1f7709ab9536059a.tar.gz
fortran-helloworld: add a very dumb Fortran Hello World for testing
For future runtime testing something more complex is preferred but this is sufficient to exercise the cross compiler. (From OE-Core rev: 7d5f39ca717fa1caea357a4366bbf106386432c0) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest/recipes-test/fortran/files/hello.f95')
-rw-r--r--meta-selftest/recipes-test/fortran/files/hello.f955
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-selftest/recipes-test/fortran/files/hello.f95 b/meta-selftest/recipes-test/fortran/files/hello.f95
new file mode 100644
index 0000000000..a0745fc64d
--- /dev/null
+++ b/meta-selftest/recipes-test/fortran/files/hello.f95
@@ -0,0 +1,5 @@
1program helloworld
2
3 print * , "Hello World!"
4
5end program helloworld