aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/gcc.py
diff options
context:
space:
mode:
authorMariano Lopez <mariano.lopez@linux.intel.com>2017-01-31 15:05:51 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-31 23:27:43 +0000
commit3f1c57191802309e58a7b3b42e8ec812e83bd8ed (patch)
tree896ce2b8e31b5b08b730cb79adb6c2ed10137578 /meta/lib/oeqa/runtime/cases/gcc.py
parent1135024502bb120c331e065f4c441d6a3efb6d4f (diff)
downloadopenembedded-core-contrib-3f1c57191802309e58a7b3b42e8ec812e83bd8ed.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] 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.py3
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):
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