From cc2202b8b45ccdce16256cac3780aa7a546a882f Mon Sep 17 00:00:00 2001 From: Lucian Musat Date: Fri, 17 Jul 2015 12:54:36 +0300 Subject: oeqa/runtime: Added decorators for the remaining auto tests. This helps for the automatic completion of the results in testopia. (From OE-Core rev: 9148e5873a79ea3ef64f00cf9807fae99bf3040a) Signed-off-by: Lucian Musat Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/gcc.py | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/lib/oeqa/runtime/gcc.py') diff --git a/meta/lib/oeqa/runtime/gcc.py b/meta/lib/oeqa/runtime/gcc.py index a7f62e1758..d90cd1799a 100644 --- a/meta/lib/oeqa/runtime/gcc.py +++ b/meta/lib/oeqa/runtime/gcc.py @@ -30,6 +30,7 @@ class GccCompileTest(oeRuntimeTest): (status, output) = self.target.run('/tmp/test') self.assertEqual(status, 0, msg="running compiled file failed, output %s" % output) + @testcase(1142) 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) -- cgit v1.2.3-54-g00ecf