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>
This commit is contained in:
Mariano Lopez
2017-01-31 15:05:51 -06:00
committed by Richard Purdie
parent cb3d884e0a
commit 5582b67f6d
3 changed files with 10 additions and 4 deletions

View File

@@ -11,15 +11,12 @@ class GccCompileTest(OERuntimeTestCase):
def setUpClass(cls):
dst = '/tmp/'
src = os.path.join(cls.tc.files_dir, 'test.c')
#dst = '/tmp/test.c'
cls.tc.target.copyTo(src, dst)
src = os.path.join(cls.tc.runtime_files_dir, 'testmakefile')
#dst = '/tmp/testmakefile'
cls.tc.target.copyTo(src, dst)
src = os.path.join(cls.tc.files_dir, 'test.cpp')
#dst = '/tmp/test.cpp'
cls.tc.target.copyTo(src, dst)
@classmethod