diff options
-rw-r--r-- | meta/lib/oeqa/selftest/cases/reproducible.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py index 2c9bc0bf90..98259ae515 100644 --- a/meta/lib/oeqa/selftest/cases/reproducible.py +++ b/meta/lib/oeqa/selftest/cases/reproducible.py | |||
@@ -132,9 +132,13 @@ class ReproducibleTests(OESelftestTestCase): | |||
132 | max_report_size = 250 * 1024 * 1024 | 132 | max_report_size = 250 * 1024 * 1024 |
133 | 133 | ||
134 | # targets are the things we want to test the reproducibility of | 134 | # targets are the things we want to test the reproducibility of |
135 | targets = ['core-image-minimal', 'core-image-sato', 'core-image-full-cmdline', 'core-image-weston', 'world'] | 135 | targets = get_bb_var("OEQA_REPRODUCIBLE_TEST_TARGET") |
136 | if targets: | ||
137 | targets = targets.split() | ||
138 | else: | ||
139 | targets = ['core-image-minimal', 'core-image-sato', 'core-image-full-cmdline', 'core-image-weston', 'world'] | ||
136 | # sstate targets are things to pull from sstate to potentially cut build/debugging time | 140 | # sstate targets are things to pull from sstate to potentially cut build/debugging time |
137 | sstate_targets = [] | 141 | sstate_targets = (get_bb_var("OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS") or "").split() |
138 | save_results = False | 142 | save_results = False |
139 | if 'OEQA_DEBUGGING_SAVED_OUTPUT' in os.environ: | 143 | if 'OEQA_DEBUGGING_SAVED_OUTPUT' in os.environ: |
140 | save_results = os.environ['OEQA_DEBUGGING_SAVED_OUTPUT'] | 144 | save_results = os.environ['OEQA_DEBUGGING_SAVED_OUTPUT'] |