[OE-core] [PATCH] scripts/lib/bsp/help.py: Add missing options to yocto-bsp help and usage

2016-03-14 Thread humberto . ibarra . lopez
From: Humberto Ibarra Add the options --codedump and --skip-git-check to the yocto-bsp help and yocto-bsp usage, since they are currently missing. [YOCTO #8322] Signed-off-by: Humberto Ibarra --- scripts/lib/bsp/help.py | 2 ++

[OE-core] [PATCH] scripts/oe-selftest: Add short names to most common options

2016-03-11 Thread humberto . ibarra . lopez
From: Humberto Ibarra Add short names to most common options in oe-selftest. The options changed were --run-tests, --run-all-tests, --list-tests and --list-modules. [Yocto #9079] Signed-off-by: Humberto Ibarra ---

[OE-core] [PATCH] scripts/oe-selftest: Add search expression matching to run/list options

2016-03-11 Thread humberto . ibarra . lopez
From: Humberto Ibarra The oe-selftest script required an exact matching for the parameters passed to its run-tests-by and list-tests-by options. Many tests can be retrieved here and filtering is a must. This patch add this filtering functionality by enabling the

[OE-core] [PATCH v3 2/2] scripts/oe-selftest: Use site.USER_SITE to run coverage configuration code for sub-process

2016-02-19 Thread humberto . ibarra . lopez
From: Humberto Ibarra Coverage in oe-selftest currently requires to create or modify a sitecustomize.py file according the coverage tool setup instructions (http://coverage.readthedocs.org/). This file has to be located in the system's python folder, which is not

[OE-core] [PATCH v3 1/2] scripts/oe-selftest: Add filtering to the coverage data gathered by oe-selftest

2016-02-19 Thread humberto . ibarra . lopez
From: Humberto Ibarra When --coverage is used, oe-selftest gathers coverage data from the testcases executed. The command lacks a way of filtering which files to gather coverage data from. This patch adds three options to specify which files should be

[OE-core] [PATCH v3 0/2] Coverage filtering and configuration file for sub-process in $HOME

2016-02-19 Thread humberto . ibarra . lopez
From: Humberto Ibarra Enables filtering to the files to be measured with coverage and adds temporal file to enable subprocessing Humberto Ibarra (2): scripts/oe-selftest: Add filtering to the coverage data gathered by oe-selftest

[OE-core] [PATCH v2 0/2] Coverage filtering and configuration file for sub-process in $HOME

2016-02-17 Thread humberto . ibarra . lopez
From: Humberto Ibarra Enables filtering to the files to be measured with coverage and adds temporal file to enable subprocessing Humberto Ibarra (2): scripts/oe-selftest: Add filtering to the coverage data gathered by oe-selftest

[OE-core] [PATCH v2 2/2] scripts/oe-selftest: Use site.USER_SITE to run coverage configuration code for sub-process

2016-02-17 Thread humberto . ibarra . lopez
From: Humberto Ibarra Coverage in oe-selftest currently requires to create or modify a sitecustomize.py file according the coverage tool setup instructions (http://coverage.readthedocs.org/). This file has to be located in the system's python folder, which is not

[OE-core] [PATCH v2 1/2] scripts/oe-selftest: Add filtering to the coverage data gathered by oe-selftest

2016-02-17 Thread humberto . ibarra . lopez
From: Humberto Ibarra When --coverage is used, oe-selftest gathers coverage data from the testcases executed. The command lacks a way of filtering which files to gather coverage data from. This patch adds three options to specify which files should be

[OE-core] [PATCH 2/2] scripts/oe-selftest: Use site.USER_SITE to run coverage configuration code for sub-process

2016-02-16 Thread humberto . ibarra . lopez
From: Humberto Ibarra Coverage in oe-selftest currently requires to create or modify a sitecustomize.py file according the coverage tool setup instructions (http://coverage.readthedocs.org/). This file has to be located in the system's python folder, which is not

[OE-core] [PATCH 1/2] scripts/oe-selftest: Add filtering to the coverage data gathered by oe-selftest

2016-02-16 Thread humberto . ibarra . lopez
From: Humberto Ibarra When --coverage is used, oe-selftest gathers coverage data from the testcases executed. The command lacks a way of filtering which files to gather coverage data from. This patch adds three options to specify which files should be

[OE-core] [PATCH 0/2] Coverage filering and configuration file for sub-process in $HOME

2016-02-16 Thread humberto . ibarra . lopez
From: Humberto Ibarra Enables filtering to the files to be measured with coverage and adds temporal file to enable subprocessing Humberto Ibarra (2): scripts/oe-selftest: Add filtering to the coverage data gathered by oe-selftest

[OE-core] [PATCH] scripts/oe-selftest: Remove extra coverage data added to unittests

2015-12-23 Thread humberto . ibarra . lopez
From: Humberto Ibarra Coverage data tracking initiates too early, causing coverage data from the oe-selftest environment setting to be added to each run. Even when no tests are run oe-selftest reports around 24% of coverage due to this extra data. Change the

[OE-core] [PATCH v3] scripts/yocto-layer: Avoids duplication of "meta-" prefix

2015-12-09 Thread humberto . ibarra . lopez
From: Humberto Ibarra The yocto-layer script puts and extra "meta-" prefix on the given layer name even when the prefix is already there. This fix avoids duplicating the prefix in these situations. The change was done inside the create subcommand since this is a

[OE-core] [PATCH v2] scripts/yocto-layer Change to the yocto-layer script. The fix avoids the duplication of the "meta-" prefix on the layer directory when creating a new layer with the prefix already

2015-12-08 Thread humberto . ibarra . lopez
From: Humberto Ibarra Before the change: $ yocto-layer create meta-layer2 ... New layer created in meta-meta-layer2. - After the change: $ yocto-layer create meta-layer2 ... New layer created in meta-layer2. Signed-off-by: Humberto Ibarra

[OE-core] [scripts][PATCH] yocto-layer: Stops duplication of meta- prefix

2015-07-29 Thread humberto . ibarra . lopez
From: Humberto Ibarra humberto.ibarra.lo...@intel.com The yocto-layer script puts an extra meta- prefix to the given layer name even when the prefix is already there. This fix avoids duplicating the prefix in these situations. [YOCTO #8050] Signed-off-by: Humberto Ibarra