]> code.ossystems Code Review - openembedded-core.git/commitdiff
ext-sdk-prepare: Catch setscene tasks which should have run but didn't
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 4 Mar 2016 16:22:26 +0000 (16:22 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 6 Mar 2016 23:52:58 +0000 (23:52 +0000)
When installing the eSDK, if setscene task fail for some reason, the tests
would ignore this. This is bad since we assume they're working.

This adds some sanity test code which detects if setscene tasks are
needing to run and errors if there are any.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/files/ext-sdk-prepare.py

index 143e0feba06dc5966fd6dd9dcb18a5460cd945c2..c99e34f3715b22983141910fd055af10247dd1ee 100644 (file)
@@ -72,12 +72,14 @@ def main():
                 else:
                     line = line.split('Running', 1)[-1]
                     unexpected.append(line.rstrip())
+            elif 'Running setscene' in line:
+                unexpected.append(line.rstrip())
     except subprocess.CalledProcessError as e:
         print('ERROR: Failed to execute dry-run:\n%s' % e.output)
         return 1
 
     if unexpected:
-        print('ERROR: Unexpected tasks left over to be executed:')
+        print('ERROR: Unexpected tasks or setscene left over to be executed:')
         for line in unexpected:
             print('  ' + line)
         return 1