summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/gcc.py
diff options
context:
space:
mode:
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'])