diff options
author | Khouloud Touil <ktouil@baylibre.com> | 2019-08-07 17:08:30 +0200 |
---|---|---|
committer | Khouloud Touil <ktouil@baylibre.com> | 2019-09-06 05:06:41 +0200 |
commit | 9c3c11e82280d72d34a6c0f32d255d6a0f1b23c8 (patch) | |
tree | 803a36be22a3caf90d883fb587cde6ed28ac6fc9 /test-suites/short-smoke/service-check.yaml | |
parent | f6e4ceb2f7e5a3f6020e3d64e8c9270a11f94bd4 (diff) |
Use the new arg --build-tags and the arg --device-tags
Use the new arg --build-tags along with the arg --device-tags to decide
the tests to be run and the tests to be skiped.
The test to be tested in this patch is for the weston service.
Bug-AGL: SPEC-2721
Change-Id: Ia34680c5e60e27dfe286626fedc5775efff87ba3
Signed-off-by: Khouloud Touil <ktouil@baylibre.com>
Diffstat (limited to 'test-suites/short-smoke/service-check.yaml')
-rw-r--r-- | test-suites/short-smoke/service-check.yaml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test-suites/short-smoke/service-check.yaml b/test-suites/short-smoke/service-check.yaml index 8c680c9..a7f7b1d 100644 --- a/test-suites/short-smoke/service-check.yaml +++ b/test-suites/short-smoke/service-check.yaml @@ -8,8 +8,11 @@ metadata: - openembedded scope: - functional +params: + BUILD_TAGS: "" + DEVICE_TAGS: "" run: steps: - - "cd common/scripts" - - "./service-check-gfx.sh" + - cd common/scripts + - ./service-check-gfx.sh -b "${BUILD_TAGS}" -d "${DEVICE_TAGS}" |