summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/gcc.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-08 16:56:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-09 16:31:55 +0100
commitc7592b01478def091b6787412390c61e7ce0a0cd (patch)
tree3c2f26480c6e16fae0ad65b032e3dc0fccfca71b /meta/lib/oeqa/runtime/cases/gcc.py
parentc0dc72bad92e2e4dc0aedb48b969709f821baf73 (diff)
downloadpoky-c7592b01478def091b6787412390c61e7ce0a0cd.tar.gz
oeqa: Drop OETestID
These IDs refer to testopia which we're no longer using. We would now use the test names to definitively reference tests and the IDs can be dropped, along with their supporting code. (From OE-Core rev: 8e2d0575e4e7036b5f60e632f377a8ab2b96ead8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/gcc.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/gcc.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/lib/oeqa/runtime/cases/gcc.py b/meta/lib/oeqa/runtime/cases/gcc.py
index 8265c59f23..e55eb560d0 100644
--- a/meta/lib/oeqa/runtime/cases/gcc.py
+++ b/meta/lib/oeqa/runtime/cases/gcc.py
@@ -2,7 +2,6 @@ import os
2 2
3from oeqa.runtime.case import OERuntimeTestCase 3from oeqa.runtime.case import OERuntimeTestCase
4from oeqa.core.decorator.depends import OETestDepends 4from oeqa.core.decorator.depends import OETestDepends
5from oeqa.core.decorator.oeid import OETestID
6from oeqa.runtime.decorator.package import OEHasPackage 5from oeqa.runtime.decorator.package import OEHasPackage
7 6
8class GccCompileTest(OERuntimeTestCase): 7class GccCompileTest(OERuntimeTestCase):
@@ -24,7 +23,6 @@ class GccCompileTest(OERuntimeTestCase):
24 files = '/tmp/test.c /tmp/test.o /tmp/test /tmp/testmakefile' 23 files = '/tmp/test.c /tmp/test.o /tmp/test /tmp/testmakefile'
25 cls.tc.target.run('rm %s' % files) 24 cls.tc.target.run('rm %s' % files)
26 25
27 @OETestID(203)
28 @OETestDepends(['ssh.SSHTest.test_ssh']) 26 @OETestDepends(['ssh.SSHTest.test_ssh'])
29 @OEHasPackage(['gcc']) 27 @OEHasPackage(['gcc'])
30 def test_gcc_compile(self): 28 def test_gcc_compile(self):
@@ -36,7 +34,6 @@ class GccCompileTest(OERuntimeTestCase):
36 msg = 'running compiled file failed, output: %s' % output 34 msg = 'running compiled file failed, output: %s' % output
37 self.assertEqual(status, 0, msg=msg) 35 self.assertEqual(status, 0, msg=msg)
38 36
39 @OETestID(200)
40 @OETestDepends(['ssh.SSHTest.test_ssh']) 37 @OETestDepends(['ssh.SSHTest.test_ssh'])
41 @OEHasPackage(['g++']) 38 @OEHasPackage(['g++'])
42 def test_gpp_compile(self): 39 def test_gpp_compile(self):
@@ -48,7 +45,6 @@ class GccCompileTest(OERuntimeTestCase):
48 msg = 'running compiled file failed, output: %s' % output 45 msg = 'running compiled file failed, output: %s' % output
49 self.assertEqual(status, 0, msg=msg) 46 self.assertEqual(status, 0, msg=msg)
50 47
51 @OETestID(1142)
52 @OETestDepends(['ssh.SSHTest.test_ssh']) 48 @OETestDepends(['ssh.SSHTest.test_ssh'])
53 @OEHasPackage(['g++']) 49 @OEHasPackage(['g++'])
54 def test_gpp2_compile(self): 50 def test_gpp2_compile(self):
@@ -60,7 +56,6 @@ class GccCompileTest(OERuntimeTestCase):
60 msg = 'running compiled file failed, output: %s' % output 56 msg = 'running compiled file failed, output: %s' % output
61 self.assertEqual(status, 0, msg=msg) 57 self.assertEqual(status, 0, msg=msg)
62 58
63 @OETestID(204)
64 @OETestDepends(['ssh.SSHTest.test_ssh']) 59 @OETestDepends(['ssh.SSHTest.test_ssh'])
65 @OEHasPackage(['gcc']) 60 @OEHasPackage(['gcc'])
66 @OEHasPackage(['make']) 61 @OEHasPackage(['make'])