summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-06-25 15:52:03 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-27 12:20:36 +0100
commitbb75a124251a407daa765fa47b961e733042c33d (patch)
tree066ad3f941afe8b13f12de2e24cb1aad3afe7b0a /meta/lib/oeqa/selftest/cases
parentf0c76ce18c874ffc9ca036eb1f7709ab9536059a (diff)
downloadpoky-bb75a124251a407daa765fa47b961e733042c33d.tar.gz
oeqa/buildoptions: check that Fortran code actually cross-compiles
Don't just test that we can build the cross-compiler, but test that it actually can cross-compile some Fortran. The quadmath dependency is now handled in gcc-runtime and isn't needed in this test (as per local.conf.sample.extended changes). There's also no need to build libgfortran explicitly, as fortran-helloworld depends on it. (From OE-Core rev: 4b43c655ed5ff8b9d2662730526811220b21ff8c) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases')
-rw-r--r--meta/lib/oeqa/selftest/cases/buildoptions.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/meta/lib/oeqa/selftest/cases/buildoptions.py b/meta/lib/oeqa/selftest/cases/buildoptions.py
index 3ad65b4034..6a5378d3ff 100644
--- a/meta/lib/oeqa/selftest/cases/buildoptions.py
+++ b/meta/lib/oeqa/selftest/cases/buildoptions.py
@@ -162,17 +162,14 @@ class ArchiverTest(OESelftestTestCase):
162 self.assertTrue((g.glob(src_file_glob) and g.glob(tar_file_glob)), "Couldn't find .src.rpm and .tar.gz files under %s/allarch*/xcursor*" % deploy_dir_src) 162 self.assertTrue((g.glob(src_file_glob) and g.glob(tar_file_glob)), "Couldn't find .src.rpm and .tar.gz files under %s/allarch*/xcursor*" % deploy_dir_src)
163 163
164class ToolchainOptions(OESelftestTestCase): 164class ToolchainOptions(OESelftestTestCase):
165
166 def test_toolchain_fortran(self): 165 def test_toolchain_fortran(self):
167 """ 166 """
168 Test whether we can enable and build fortran and its supporting libraries 167 Test that Fortran works by building a Hello, World binary.
169 """ 168 """
170 169
171 features = 'FORTRAN_forcevariable = ",fortran"\n' 170 features = 'FORTRAN_forcevariable = ",fortran"\n'
172 features += 'RUNTIMETARGET_append_pn-gcc-runtime = " libquadmath"\n'
173 self.write_config(features) 171 self.write_config(features)
174 172 bitbake('fortran-helloworld')
175 bitbake('gcc-runtime libgfortran')
176 173
177class SourceMirroring(OESelftestTestCase): 174class SourceMirroring(OESelftestTestCase):
178 # Can we download everything from the Yocto Sources Mirror over http only 175 # Can we download everything from the Yocto Sources Mirror over http only