diff options
author | Lucian Musat <george.l.musat@intel.com> | 2015-04-09 11:01:49 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-10 18:10:25 +0100 |
commit | 3dabad439a0eab2d6c5854a515302b35704abaf6 (patch) | |
tree | 98403633c75f61d60c09576fb56415f0ebc70035 /meta/lib | |
parent | f33488a65688109ca767d9a7270a170a03758a54 (diff) | |
download | poky-3dabad439a0eab2d6c5854a515302b35704abaf6.tar.gz |
oeqa/runtime/ping: Added new decorators for existing automated tests.
(From OE-Core rev: 9ca0f5c7837ef42cf3b95ff4091ea6951b4e8021)
Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/runtime/ping.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/ping.py b/meta/lib/oeqa/runtime/ping.py index a73c72402a..80c460161b 100644 --- a/meta/lib/oeqa/runtime/ping.py +++ b/meta/lib/oeqa/runtime/ping.py | |||
@@ -3,9 +3,11 @@ import unittest | |||
3 | import sys | 3 | import sys |
4 | import time | 4 | import time |
5 | from oeqa.oetest import oeRuntimeTest | 5 | from oeqa.oetest import oeRuntimeTest |
6 | from oeqa.utils.decorators import * | ||
6 | 7 | ||
7 | class PingTest(oeRuntimeTest): | 8 | class PingTest(oeRuntimeTest): |
8 | 9 | ||
10 | @testcase(964) | ||
9 | def test_ping(self): | 11 | def test_ping(self): |
10 | output = '' | 12 | output = '' |
11 | count = 0 | 13 | count = 0 |