diff options
author | Mariano Lopez <mariano.lopez@linux.intel.com> | 2017-01-31 15:05:51 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 23:27:47 +0000 |
commit | 5582b67f6d1d53290f485afe8d459380d90f116e (patch) | |
tree | 1fd4e64cf204ea22a7d4da67bd4e923f89b366d4 /meta/lib/oeqa/runtime/cases/gcc.py | |
parent | cb3d884e0a7ebbac1e5f873123b4d3491ce1a044 (diff) | |
download | poky-5582b67f6d1d53290f485afe8d459380d90f116e.tar.gz |
runtime/cases: Fix case numbers, missing cases and unused classes
gcc: Removed unneded lines.
multilib: fixed case number.
syslog: added a missing test.
[YOCTO #10964]
(From OE-Core rev: 3f1c57191802309e58a7b3b42e8ec812e83bd8ed)
Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
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 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/lib/oeqa/runtime/cases/gcc.py b/meta/lib/oeqa/runtime/cases/gcc.py index 064fa49af1..911083156f 100644 --- a/meta/lib/oeqa/runtime/cases/gcc.py +++ b/meta/lib/oeqa/runtime/cases/gcc.py | |||
@@ -11,15 +11,12 @@ class GccCompileTest(OERuntimeTestCase): | |||
11 | def setUpClass(cls): | 11 | def setUpClass(cls): |
12 | dst = '/tmp/' | 12 | dst = '/tmp/' |
13 | src = os.path.join(cls.tc.files_dir, 'test.c') | 13 | src = os.path.join(cls.tc.files_dir, 'test.c') |
14 | #dst = '/tmp/test.c' | ||
15 | cls.tc.target.copyTo(src, dst) | 14 | cls.tc.target.copyTo(src, dst) |
16 | 15 | ||
17 | src = os.path.join(cls.tc.runtime_files_dir, 'testmakefile') | 16 | src = os.path.join(cls.tc.runtime_files_dir, 'testmakefile') |
18 | #dst = '/tmp/testmakefile' | ||
19 | cls.tc.target.copyTo(src, dst) | 17 | cls.tc.target.copyTo(src, dst) |
20 | 18 | ||
21 | src = os.path.join(cls.tc.files_dir, 'test.cpp') | 19 | src = os.path.join(cls.tc.files_dir, 'test.cpp') |
22 | #dst = '/tmp/test.cpp' | ||
23 | cls.tc.target.copyTo(src, dst) | 20 | cls.tc.target.copyTo(src, dst) |
24 | 21 | ||
25 | @classmethod | 22 | @classmethod |