diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-08 16:56:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-09 16:31:55 +0100 |
commit | c7592b01478def091b6787412390c61e7ce0a0cd (patch) | |
tree | 3c2f26480c6e16fae0ad65b032e3dc0fccfca71b /meta/lib/oeqa/runtime/cases/gcc.py | |
parent | c0dc72bad92e2e4dc0aedb48b969709f821baf73 (diff) | |
download | poky-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.py | 5 |
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 | ||
3 | from oeqa.runtime.case import OERuntimeTestCase | 3 | from oeqa.runtime.case import OERuntimeTestCase |
4 | from oeqa.core.decorator.depends import OETestDepends | 4 | from oeqa.core.decorator.depends import OETestDepends |
5 | from oeqa.core.decorator.oeid import OETestID | ||
6 | from oeqa.runtime.decorator.package import OEHasPackage | 5 | from oeqa.runtime.decorator.package import OEHasPackage |
7 | 6 | ||
8 | class GccCompileTest(OERuntimeTestCase): | 7 | class 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']) |