]> code.ossystems Code Review - openembedded-core.git/commitdiff
python: mark the tests modules as special when updating the manifest
authorRoss Burton <ross.burton@intel.com>
Fri, 28 Sep 2018 16:06:15 +0000 (17:06 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 29 Sep 2018 12:26:41 +0000 (13:26 +0100)
We manually maintain the tests package's content and dependencies, so mark is as
special (matching create_manifest3.py).

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/python/python/create_manifest2.py

index 1af1443f476b3bb15d95af6320aa4927f550d522..87999991d732c6e6a0c4f9148ef8905681cff42c 100644 (file)
@@ -137,7 +137,7 @@ for key in old_manifest:
     # Handle special cases, we assume that when they were manually added 
     # to the manifest we knew what we were doing.
     print ('Handling package %s' % key)
-    special_packages=['misc', 'modules', 'dev']
+    special_packages=['misc', 'modules', 'tests', 'dev']
     if key in special_packages or 'staticdev' in key:
         print('Passing %s package directly' % key)
         new_manifest[key]=old_manifest[key]