Re: [OE-core] [PATCH] oeqa/testimage: Add ability to run single test from suite.

2015-09-28 Thread Musat, George L
] Sent: Monday, September 28, 2015 5:29 PM To: Musat, George L Cc: OE-core Subject: Re: [OE-core] [PATCH] oeqa/testimage: Add ability to run single test from suite. On 28 September 2015 at 12:47, Lucian Musat mailto:george.l.mu...@intel.com>> wrote: @@ -172,6 +176,7 @@ def exportTest

Re: [OE-core] [PATCH] oeqa/testimage: Add ability to run single test from suite.

2015-09-28 Thread Burton, Ross
On 28 September 2015 at 12:47, Lucian Musat wrote: > @@ -172,6 +176,7 @@ def exportTests(d,tc): > +from re import search as re_search > Just import re and then do re.search - it's the same number of characters when calling and it's obvious what you're calling then. for t in tc.testslis

[OE-core] [PATCH] oeqa/testimage: Add ability to run single test from suite.

2015-09-28 Thread Lucian Musat
Just like we have in oe-selftest, you can add .. in TEST_SUITES in order to run just that test. Signed-off-by: Lucian Musat --- meta/classes/testimage.bbclass | 7 +++ 1 file changed, 7 insertions(+) diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 2efab29.