diff options
author | Corneliu Stoicescu <corneliux.stoicescu@intel.com> | 2014-08-09 14:01:25 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-11 12:30:16 +0100 |
commit | 63cbed337241191f33fe951662a39ce59dce6774 (patch) | |
tree | 01b7c507e3767c2a45832592718a16b55fcf99ba /meta/lib/oeqa | |
parent | 947e6f9005abc71f499f23a4dd3a5a9f8386a369 (diff) | |
download | openembedded-core-63cbed337241191f33fe951662a39ce59dce6774.tar.gz openembedded-core-63cbed337241191f33fe951662a39ce59dce6774.tar.bz2 openembedded-core-63cbed337241191f33fe951662a39ce59dce6774.zip |
oeqa/runtime: add new cpp test and file
This tests out the limits header which we've noticed does have problems in
some SDK builds.
Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/runtime/files/test.cpp | 3 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/gcc.py | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/files/test.cpp b/meta/lib/oeqa/runtime/files/test.cpp new file mode 100644 index 0000000000..9e1a76473d --- /dev/null +++ b/meta/lib/oeqa/runtime/files/test.cpp @@ -0,0 +1,3 @@ +#include <limits> + +int main() {}
\ No newline at end of file diff --git a/meta/lib/oeqa/runtime/gcc.py b/meta/lib/oeqa/runtime/gcc.py index 08b3cf1230..a7f62e1758 100644 --- a/meta/lib/oeqa/runtime/gcc.py +++ b/meta/lib/oeqa/runtime/gcc.py @@ -14,6 +14,7 @@ class GccCompileTest(oeRuntimeTest): def setUpClass(self): oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.filesdir, "test.c"), "/tmp/test.c") oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.filesdir, "testmakefile"), "/tmp/testmakefile") + oeRuntimeTest.tc.target.copy_to(os.path.join(oeRuntimeTest.tc.filesdir, "test.cpp"), "/tmp/test.cpp") @testcase(203) def test_gcc_compile(self): @@ -29,6 +30,12 @@ class GccCompileTest(oeRuntimeTest): (status, output) = self.target.run('/tmp/test') self.assertEqual(status, 0, msg="running compiled file failed, output %s" % output) + def test_gpp2_compile(self): + (status, output) = self.target.run('g++ /tmp/test.cpp -o /tmp/test -lm') + self.assertEqual(status, 0, msg="g++ compile failed, output: %s" % output) + (status, output) = self.target.run('/tmp/test') + self.assertEqual(status, 0, msg="running compiled file failed, output %s" % output) + @testcase(204) def test_make(self): (status, output) = self.target.run('cd /tmp; make -f testmakefile') |