diff --git a/atc_renderer/parser.py b/atc_renderer/parser.py index 76a3a45425ced5d9e1a03e8c9908d7043bb40741..bc4b5fc75e56366ef0269e5b98bb2f26daef79f4 100644 --- a/atc_renderer/parser.py +++ b/atc_renderer/parser.py @@ -26,7 +26,7 @@ import yaml from atc_renderer.exceptions import ParserTypeError, ParserMissingFieldError -image_types = [ "any", "development", "minimal", "SDK", "target", "tiny-lxc" ] +image_variants = [ "any", "development", "minimal", "SDK", "target", "tiny-lxc" ] image_arch = ['any', 'amd64', 'arm64', 'armhf'] tests_types = ['compatibility', 'functional', 'performance', 'sanity', 'system'] priorities = ['critical', 'high', 'low', 'medium'] @@ -37,7 +37,7 @@ test_case_format = { 'metadata': (True, { 'name': (True, ""), 'format': (False, ""), - 'image-type': (True, image_types), + 'image-variant': (True, image_variants), 'image-arch': (True, image_arch), 'type': (True, tests_types), 'exec-type': (True, execution_type), @@ -72,7 +72,7 @@ def _parse_format(test_case, test_case_format): continue if type(value) == str and type(valuef) == list: - if tagf in ['image-type' , 'image-arch', 'type', + if tagf in ['image-variant' , 'image-arch', 'type', 'exec-type', 'priority']: try: valuef.index(value) diff --git a/atc_renderer/renderer.py b/atc_renderer/renderer.py index c05dd7ada1d23f7c808845666f132f9144c14656..a01cee74d556f71b962fa95c759907eec5fc4be3 100644 --- a/atc_renderer/renderer.py +++ b/atc_renderer/renderer.py @@ -99,7 +99,7 @@ def get_template_values(testcase_data): print("Error: missing mandatory field metadata") exit(1) - for mv in ['name', 'image-type', 'image-arch', 'type', + for mv in ['name', 'image-variant', 'image-arch', 'type', 'exec-type', 'priority', 'description', 'expected']: value = metadata.get(mv) if value: diff --git a/atc_renderer/templates/test_case.html b/atc_renderer/templates/test_case.html index c76ba814486e717d9a15625f17470344c49b7fed..63d4cf8904252ff762b935f1e81d1f054b61dc88 100644 --- a/atc_renderer/templates/test_case.html +++ b/atc_renderer/templates/test_case.html @@ -15,8 +15,8 @@ <div class="card" style="margin-top: 20px"> <div class="card-body"> <dl class="row"> - <dt class="col-sm-3">Image Type:</dt> - <dd class="col-sm-9">{{ image_type }}</dd> + <dt class="col-sm-3">Image Variant:</dt> + <dd class="col-sm-9">{{ image_variant }}</dd> <dt class="col-sm-3">Image Architecture:</dt> <dd class="col-sm-9">{{ image_arch }}</dd> <dt class="col-sm-3">Type:</dt> diff --git a/atc_renderer/tests.py b/atc_renderer/tests.py index dd6894af12da6e1f2b9db339afae1cb63df1f5c6..4cf2e9642e276eec6f2b30a2d517465d84aab07d 100644 --- a/atc_renderer/tests.py +++ b/atc_renderer/tests.py @@ -108,7 +108,7 @@ class TestMissingFields(unittest.TestCase): def test_missing_image_type_field(self): tc_file = copy.deepcopy(self.test_file) - tc_file['metadata'].pop('image-type') + tc_file['metadata'].pop('image-variant') with self.assertRaises(ParserMissingFieldError): parse_format(tc_file) diff --git a/atc_renderer/tests_files/test_file1.html b/atc_renderer/tests_files/test_file1.html index fd24f050737e50a1b1bac58027b7be65dc672b1d..5c8a9c712f6ec4e64559687a090c4b8343aed252 100644 --- a/atc_renderer/tests_files/test_file1.html +++ b/atc_renderer/tests_files/test_file1.html @@ -15,7 +15,7 @@ <div class="card" style="margin-top: 20px"> <div class="card-body"> <dl class="row"> - <dt class="col-sm-3">Image Type:</dt> + <dt class="col-sm-3">Image Variant:</dt> <dd class="col-sm-9">any</dd> <dt class="col-sm-3">Image Architecture:</dt> <dd class="col-sm-9">any</dd> @@ -36,23 +36,26 @@ + <li class="mb-sm-2">Clone the tests repository from another computer <i>(Note that the branch being tested may change depending on the release, please make sure to clone the correct branch for the release in question)</i>:</li> + <p><kbd>$ git clone --branch master https://gitlab.apertis.org/infrastructure/apertis-tests.git</kbd></p> + <li class="mb-sm-2">Copy the test directory apertis-tests to the target device:</li> + <p><kbd>$ DUT_IP=<device-ip></kbd></p> + <p><kbd>$ scp -r apertis-tests user@$DUT_IP:</kbd></p> + <li class="mb-sm-2">Log into the target device:</li> + <p><kbd>$ ssh user@$DUT_IP</kbd></p> + - <li class="mb-sm-2">A second system with a terminal and git available on it. This test must be executed before other tests and even before installing other packages in the image, so the script to execute this test should be fetched from a different machine.</li> - - - - - <li class="mb-sm-2">Clone the apertis-tests repository in the second system:</li> + <li class="mb-sm-2">A second system with a terminal and git available on it is required in order to run the above steps.</li> + <li class="mb-sm-2">This test must be executed before other tests and even before installing other packages in the image, so the script to execute this test should be fetched from a different machine.</li> - <p><kbd>$ git clone https://gitlab.apertis.org/infrastructure/apertis-tests.git</kbd></p> - <li class="mb-sm-2">Copy the apertis-tests folder to the Apertis system. Since the Apertis image runs sshd by default, you can easily copy this file using the scp utility from the second machine, for this you will need the Apertis image IP, which you can find running the ip command from Apertis:</li> + <li class="mb-sm-2">Since the Apertis image runs sshd by default, you can easily copy this file using the scp utility from the second machine, for this you will need the Apertis image IP, which you can find running the ip command from Apertis:</li> @@ -62,47 +65,30 @@ - <li class="mb-sm-2">Replace <APERTIS_IMAGE_IP> by the found IP and copy the apertis-tests repository using scp from the second system where the apertis-tests repository was cloned. It would look like this:</li> - - - - - - <p><kbd>$ tar cf apertis-tests.tar apertis-tests/ && scp apertis-tests.tar user@<APERTIS_IMAGE_IP>:/home/user/</kbd></p> - - - <li class="mb-sm-2">Alternatively, you can copy the apertis-tests directory in other ways, for example by using an external storage device, manually mounting the device and copying the folder. It is recommended and expected that you use scp from a second machine.</li> - <li class="mb-sm-2">Once the apertis-tests folder is available in the Apertis image, unpack it in the apertis home user directory:</li> - - + <li class="mb-sm-2">Once the apertis-tests folder is available in the Apertis image, follow the execution steps.</li> - <p><kbd>$ tar xf apertis-tests.tar</kbd></p> - - - - <li class="mb-sm-2">Enter the apertis-tests directory</li> - + </ol> + + <hr /> + <h4>Execution Steps</h4> + <ol> + <li class="mb-sm-2"> Enter test directory:</li> - <p><kbd>$ cd apertis-tests/</kbd></p> - </ol> + <p><kbd>$ cd apertis-tests</kbd></p> - - <hr /> - <h4>Execution Steps</h4> - <ol> <li class="mb-sm-2"> Execute the following command:</li> diff --git a/atc_renderer/tests_files/test_file1.yaml b/atc_renderer/tests_files/test_file1.yaml index ad040da79b65370693a2f29125a545e85f6d2219..2ee2fec6d7c862292860a8f5c6f856291a480666 100644 --- a/atc_renderer/tests_files/test_file1.yaml +++ b/atc_renderer/tests_files/test_file1.yaml @@ -1,7 +1,7 @@ metadata: name: sanity-check format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: sanity exec-type: all @@ -15,30 +15,21 @@ metadata: Basic functionality: services." pre-conditions: - - "A second system with a terminal and git available on it. This test must be - executed before other tests and even before installing other packages in - the image, so the script to execute this test should be fetched from a - different machine." - - "Clone the apertis-tests repository in the second system:" - - $ git clone https://gitlab.apertis.org/infrastructure/apertis-tests.git - - "Copy the apertis-tests folder to the Apertis system. Since the Apertis - image runs sshd by default, you can easily copy this file using the scp - utility from the second machine, for this you will need the Apertis image - IP, which you can find running the ip command from Apertis:" + - "A second system with a terminal and git available on it is required in order + to run the above steps." + - "This test must be executed before other tests and even before installing + other packages in the image, so the script to execute this test should be + fetched from a different machine." + - "Since the Apertis image runs sshd by default, you can easily copy this file + using the scp utility from the second machine, for this you will need the + Apertis image IP, which you can find running the ip command from Apertis:" - $ ip addr - - "Replace <APERTIS_IMAGE_IP> by the found IP and copy the apertis-tests - repository using scp from the second system where the apertis-tests - repository was cloned. It would look like this:" - - $ tar cf apertis-tests.tar apertis-tests/ && scp apertis-tests.tar user@<APERTIS_IMAGE_IP>:/home/user/ - "Alternatively, you can copy the apertis-tests directory in other ways, for example by using an external storage device, manually mounting the device and copying the folder. It is recommended and expected that you use scp from a second machine." - - "Once the apertis-tests folder is available in the Apertis image, unpack it - in the apertis home user directory:" - - $ tar xf apertis-tests.tar - - "Enter the apertis-tests directory" - - $ cd apertis-tests/ + - "Once the apertis-tests folder is available in the Apertis image, follow the + execution steps." expected: - "The command should report no failure and its output should be something @@ -59,8 +50,15 @@ metadata: - "This test must be executed in an image before running either automated or manual tests." +install: + git-repos: + - url: https://gitlab.apertis.org/infrastructure/apertis-tests.git + branch: master + run: steps: + - "# Enter test directory:" + - cd apertis-tests - "# Execute the following command:" - common/sanity-check diff --git a/atc_renderer/tests_files/test_file2.html b/atc_renderer/tests_files/test_file2.html new file mode 100644 index 0000000000000000000000000000000000000000..30472ae656aa8f93ef5136cfb48f87dfd05efdf3 --- /dev/null +++ b/atc_renderer/tests_files/test_file2.html @@ -0,0 +1,207 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <link href="css/bootstrap.min.css" rel="stylesheet"> + <title>webkit2gtk-actor-tiles</title> + </head> + <body> + + <main role="main" class="container" style="margin-top: 40px; margin-bottom: 40px"> + <h2>webkit2gtk-actor-tiles <small class="text-muted">manual</small></h2> + <h3><span class="badge badge-info">medium</span></h3> + + <div class="card" style="margin-top: 20px"> + <div class="card-body"> + <dl class="row"> + <dt class="col-sm-3">Image Variant:</dt> + <dd class="col-sm-9">target</dd> + <dt class="col-sm-3">Image Architecture:</dt> + <dd class="col-sm-9">any</dd> + <dt class="col-sm-3">Type:</dt> + <dd class="col-sm-9">functional</dd> + </dl> + + <h4>Description</h4> + <p>Test implementation of actor-based tiled backing store in webkit2gtk.</p> + + + <hr /> + <h4>Resources</h4> + <ul> + + <li>Mouse or touchscreen.</li> + + </ul> + + + + <hr /> + <h4>Pre Conditions</h4> + <ol> + + + <li class="mb-sm-2">Ensure Rootfs is remounted as read/write.</li> + <p><kbd>$ sudo mount -o remount,rw /</kbd></p> + <li class="mb-sm-2">Install dependencies</li> + <p><kbd>$ sudo apt install webkit2gtk-testing</kbd></p> + <li class="mb-sm-2">Restart the system to restore the filesystem state to read-only before running the test.</li> + <p><kbd>$ sudo reboot</kbd></p> + + + + + </ol> + + + <hr /> + <h4>Execution Steps</h4> + <ol> + + <li class="mb-sm-2">Launch the test application with each URL in resources with and without CLUTTER_PAINT=paint-volumes:</li> + + + + + <p><kbd>$ env CLUTTER_PAINT=paint-volumes GtkClutterLauncher file:///usr/share/webkit2gtk/testing/actor-tiles-test.html</kbd></p> + + + <li class="mb-sm-2">Check that the rendering of the page matches the reference in the results section.</li> + + + + <li class="mb-sm-2">Click the link that will scroll the page a bit</li> + + + + <li class="mb-sm-2">Check that the rendering of the page matches the reference in the results section</li> + + + + <li class="mb-sm-2">Click the link that will scroll to the very bottom</li> + + + + <li class="mb-sm-2">Check that the rendering of the page matches the reference in the results section</li> + + + + <li class="mb-sm-2">Click the first link that will take you to a different page</li> + + + + <li class="mb-sm-2">Check that the rendering of the page matches the reference in the results section</li> + + + + <li class="mb-sm-2">Click the back button of the browser</li> + + + + <li class="mb-sm-2">Check that the rendering of the page matches the reference in the results section</li> + + + + <li class="mb-sm-2">Click the second link, that will send you to the bottom</li> + + + + <li class="mb-sm-2">Follow the links again until you get to the end of the page again, always making sure the rendering matches the reference rendering</li> + + + + </ol> + + <hr /> + <h4>Expected</h4> + + <p class="mt-sm-3">This test will be considered a PASS if it works with at least one of mouse or touchpad because this is not a test for the mouse or touchpad working.</p> + + + + + + <p class="mt-sm-3">The page will look like this after the first load:</p> + + + + + + + + + <img src="images/Actor-tiles-01.png" class="img-fluid"> + + + <p class="mt-sm-3">After clicking the first link the page will look like this:</p> + + + + + + + + + <img src="images/Actor-tiles-02.png" class="img-fluid"> + + + <p class="mt-sm-3">After clicking the second link the page will look like this:</p> + + + + + + + + + <img src="images/Actor-tiles-03.png" class="img-fluid"> + + + <p class="mt-sm-3">The new page that will be loaded looks like this:</p> + + + + + + + + + <img src="images/Actor-tiles-04.png" class="img-fluid"> + + + <p class="mt-sm-3">Going back should give you the same rendering you had before clicking the link to the new page, except the link will be colored purple.</p> + + + + + + + + + <img src="images/Actor-tiles-05.png" class="img-fluid"> + + + <p class="mt-sm-3">After clicking the link that will take you to the beginning of the page and repeating the process, the renderings should be the same as the ones above.</p> + + + + + + <p class="mt-sm-3">Note that when a page starts loading some of the tiles may contain a checker board; that is normal, but we plan to improve on it.</p> + + + + + + + + + </div> + </div> + + + </main> + + </body> +</html> \ No newline at end of file diff --git a/atc_renderer/tests_files/test_file2.yaml b/atc_renderer/tests_files/test_file2.yaml index ef73d2055af966a2a32ee0eafc02613381d81523..01d886ab8412bf3ae8ea94d0eab56436656a7a37 100644 --- a/atc_renderer/tests_files/test_file2.yaml +++ b/atc_renderer/tests_files/test_file2.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-actor-tiles format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: manual diff --git a/atc_renderer/tests_files/test_file3.html b/atc_renderer/tests_files/test_file3.html index 41add8ae190eddf86538a7af48feedd60c36182f..1042bcbee07a71eb3ac908e24f94f4d9ed2e1062 100644 --- a/atc_renderer/tests_files/test_file3.html +++ b/atc_renderer/tests_files/test_file3.html @@ -15,7 +15,7 @@ <div class="card" style="margin-top: 20px"> <div class="card-body"> <dl class="row"> - <dt class="col-sm-3">Image Type:</dt> + <dt class="col-sm-3">Image Variant:</dt> <dd class="col-sm-9">any</dd> <dt class="col-sm-3">Image Architecture:</dt> <dd class="col-sm-9">any</dd> diff --git a/atc_renderer/tests_files/test_file3.yaml b/atc_renderer/tests_files/test_file3.yaml index 8c8e31d3fafc330af9e708b7ec14b9e475bf78db..8ae601cf1d33bd8f17e1fb72147e7d50e45f2541 100644 --- a/atc_renderer/tests_files/test_file3.yaml +++ b/atc_renderer/tests_files/test_file3.yaml @@ -1,7 +1,7 @@ metadata: name: bluez-avrcp-volume format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/atc_renderer/tests_files/test_file4.html b/atc_renderer/tests_files/test_file4.html index 7b1fd665fda7b34c7bfe642d73001068d4c45abd..8f453664e0bdd185db45dcce80ca28d6741b68d4 100644 --- a/atc_renderer/tests_files/test_file4.html +++ b/atc_renderer/tests_files/test_file4.html @@ -15,7 +15,7 @@ <div class="card" style="margin-top: 20px"> <div class="card-body"> <dl class="row"> - <dt class="col-sm-3">Image Type:</dt> + <dt class="col-sm-3">Image Variant:</dt> <dd class="col-sm-9">target</dd> <dt class="col-sm-3">Image Architecture:</dt> <dd class="col-sm-9">any</dd> @@ -33,22 +33,18 @@ <h4>Pre Conditions</h4> <ol> - <li class="mb-sm-2">From a PC, download and unpack the test data tarball from the gitlab test repository:</li> - <p><kbd>$ wget https://gitlab.apertis.org/tests/apparmor/-/archive/master/apparmor.tar.gz</kbd></p> - <p><kbd>$ tar -xvf apparmor.tar.gz</kbd></p> - <li class="mb-sm-2">Copy the apparmor-master-* to the target device:</li> + + + + <li class="mb-sm-2">Clone the tests repository from another computer <i>(Note that the branch being tested may change depending on the release, please make sure to clone the correct branch for the release in question)</i>:</li> + <p><kbd>$ git clone --branch master https://gitlab.apertis.org/tests/apparmor.git</kbd></p> + <li class="mb-sm-2">Copy the test directory apparmor to the target device:</li> <p><kbd>$ DUT_IP=<device-ip></kbd></p> - <p><kbd>$ scp -r apparmor-master-* user@$DUT_IP:</kbd></p> + <p><kbd>$ scp -r apparmor user@$DUT_IP:</kbd></p> <li class="mb-sm-2">Log into the target device:</li> <p><kbd>$ ssh user@$DUT_IP</kbd></p> - <li class="mb-sm-2">After log into the DUT, enter the test directory</li> - <p><kbd>$ cd apparmor-master-*</kbd></p> - <li class="mb-sm-2">Note that the tarball may change depending on the release/branch being tested, please make sure to download the correct tarball for the release in question.</li> - - - </ol> @@ -56,12 +52,20 @@ <h4>Execution Steps</h4> <ol> + <li class="mb-sm-2"> Enter test directory:</li> + + + + + <p><kbd>$ cd apparmor</kbd></p> + + <li class="mb-sm-2"> Execute the following command:</li> - <p><kbd>$ $ common/run-test-in-systemd --basename --timeout 3000 ./apparmor.sh</kbd></p> + <p><kbd>$ common/run-test-in-systemd --basename --timeout 3000 ./apparmor.sh</kbd></p> </ol> diff --git a/atc_renderer/tests_files/test_file4.yaml b/atc_renderer/tests_files/test_file4.yaml index adeb7c2138a773a821f83ef9411a4c075d6834c0..d6c9f1b7b36fcc51edc0e6bd83b697339a259f2b 100644 --- a/atc_renderer/tests_files/test_file4.yaml +++ b/atc_renderer/tests_files/test_file4.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: automated @@ -11,8 +11,6 @@ metadata: the kernel and active is part of strategic application and services confinement." - macro_ostree_preconditions: apparmor - expected: - "The apparmor.sh script should return 0. The return value indicates the number of tests which failed. The ouput should be similar to the following @@ -29,10 +27,17 @@ metadata: - "This testcase groups upstream developed tests mostly and therefore it's not runnning any Apertis specific test." +install: + git-repos: + - url: https://gitlab.apertis.org/tests/apparmor.git + branch: master + run: steps: + - "# Enter test directory:" + - cd apparmor - "# Execute the following command:" - - $ common/run-test-in-systemd --basename --timeout 3000 ./apparmor.sh + - common/run-test-in-systemd --basename --timeout 3000 ./apparmor.sh parse: fixupdict: diff --git a/atc_renderer/tests_files/test_file5.html b/atc_renderer/tests_files/test_file5.html index 5cda47dacd8f9d67d9192ac87de9395da34bcfd8..e50d924373bb02b95e26f3516b63088094c62395 100644 --- a/atc_renderer/tests_files/test_file5.html +++ b/atc_renderer/tests_files/test_file5.html @@ -15,7 +15,7 @@ <div class="card" style="margin-top: 20px"> <div class="card-body"> <dl class="row"> - <dt class="col-sm-3">Image Type:</dt> + <dt class="col-sm-3">Image Variant:</dt> <dd class="col-sm-9">any</dd> <dt class="col-sm-3">Image Architecture:</dt> <dd class="col-sm-9">any</dd> diff --git a/atc_renderer/tests_files/test_file5.yaml b/atc_renderer/tests_files/test_file5.yaml index c93293c38d8dc1bd23838512c65ee52a19c42414..50d98c7aaf0c1a080f3f5c571e369c081ad323e4 100644 --- a/atc_renderer/tests_files/test_file5.yaml +++ b/atc_renderer/tests_files/test_file5.yaml @@ -1,7 +1,7 @@ metadata: name: ribchester format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: unit exec-type: automated diff --git a/test-cases/abstract-contact-addressbook-creation.yaml b/test-cases/abstract-contact-addressbook-creation.yaml index 2e39cb813eb76f39d58d87c08853763b6225cc5a..d0b6550dd2881d8d16f767831abddb1ff66f3532 100644 --- a/test-cases/abstract-contact-addressbook-creation.yaml +++ b/test-cases/abstract-contact-addressbook-creation.yaml @@ -1,7 +1,7 @@ metadata: name: abstract-contact-addressbook-creation format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/ade-commands.yaml b/test-cases/ade-commands.yaml index 1fb49a6484934352b2372cd046810a768ca2fe6b..a660cbd0075a24cb119e5ee04301bc59b18a0067 100644 --- a/test-cases/ade-commands.yaml +++ b/test-cases/ade-commands.yaml @@ -1,7 +1,7 @@ metadata: name: ade-commands format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: automated diff --git a/test-cases/apertis-update-manager-api.yaml b/test-cases/apertis-update-manager-api.yaml index 20eee34bccca4513eb83b86f450e5012ab00ccd4..ef4c9df20532cc92e6866d8d41a2c1a5f379a5f7 100644 --- a/test-cases/apertis-update-manager-api.yaml +++ b/test-cases/apertis-update-manager-api.yaml @@ -1,7 +1,7 @@ metadata: name: apertis-update-manager-api format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: armhf type: functional exec-type: manual diff --git a/test-cases/apertis-update-manager-automount.yaml b/test-cases/apertis-update-manager-automount.yaml index be7c486f8c1656daefa39c04266f6a10c3fb650a..7a8fe7c0d876cc757a9fa896de133970e4e4bd1b 100644 --- a/test-cases/apertis-update-manager-automount.yaml +++ b/test-cases/apertis-update-manager-automount.yaml @@ -1,7 +1,7 @@ metadata: name: apertis-update-manager-auto format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: armhf type: functional exec-type: manual diff --git a/test-cases/apertis-update-manager-diskfull.yaml b/test-cases/apertis-update-manager-diskfull.yaml index eac20ca07c94673206dc79e64d8efe5256a54c7e..fd4c7b377b928ec095e435d92a5edb56c459e263 100644 --- a/test-cases/apertis-update-manager-diskfull.yaml +++ b/test-cases/apertis-update-manager-diskfull.yaml @@ -1,7 +1,7 @@ metadata: name: apertis-update-manager-diskfull format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: armhf type: functional exec-type: manual diff --git a/test-cases/apertis-update-manager-manual.yaml b/test-cases/apertis-update-manager-manual.yaml index a2ce0aca14b23793ad3ea8590088cb5a7d79edec..4555afe001b5391d333e347dfd842e807f557dfc 100644 --- a/test-cases/apertis-update-manager-manual.yaml +++ b/test-cases/apertis-update-manager-manual.yaml @@ -1,7 +1,7 @@ metadata: name: apertis-update-manager format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: armhf type: functional exec-type: manual diff --git a/test-cases/apertis-update-manager-powercut.yaml b/test-cases/apertis-update-manager-powercut.yaml index 6e46dc1585ac6b4ddff3c6cdbccbcacd72a897eb..6e2ed314d2870d79618fe2fdaf9494c0b906f788 100644 --- a/test-cases/apertis-update-manager-powercut.yaml +++ b/test-cases/apertis-update-manager-powercut.yaml @@ -1,7 +1,7 @@ metadata: name: apertis-update-manager-powercut format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: armhf type: functional exec-type: manual diff --git a/test-cases/apertis-update-manager-rollback.yaml b/test-cases/apertis-update-manager-rollback.yaml index f6aaef74df134ad3f768dfe7d7d69e33b9b2fdbf..138c7c501b889ac9895b6579e216c6f27e2fcc3a 100644 --- a/test-cases/apertis-update-manager-rollback.yaml +++ b/test-cases/apertis-update-manager-rollback.yaml @@ -1,7 +1,7 @@ metadata: name: apertis-update-manager-rollback format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: armhf type: functional exec-type: manual diff --git a/test-cases/apertis-update-manager-usb-unplug.yaml b/test-cases/apertis-update-manager-usb-unplug.yaml index 3fd2b96d514196ec169ceccdc671faf8dcdb12c6..65d8302776e247a01b3edbab41b37df9f0462cbc 100644 --- a/test-cases/apertis-update-manager-usb-unplug.yaml +++ b/test-cases/apertis-update-manager-usb-unplug.yaml @@ -1,7 +1,7 @@ metadata: name: apertis-update-manager-usb-unplug format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: armhf type: functional exec-type: manual diff --git a/test-cases/apparmor-basic-profiles.yaml b/test-cases/apparmor-basic-profiles.yaml index a35592048225a75a522249dee26d5cb3032db6a0..727ff232b3390d7cda6d83b454c2bf8f5eb49781 100644 --- a/test-cases/apparmor-basic-profiles.yaml +++ b/test-cases/apparmor-basic-profiles.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-basic-profiles format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor-bluez-avrcp-volume.yaml b/test-cases/apparmor-bluez-avrcp-volume.yaml index 21d2ecb2f8a2941c452b58ef95a2c17b971f3e54..3cf2a0909267eacd0d436cd533aa2ea882817ef1 100644 --- a/test-cases/apparmor-bluez-avrcp-volume.yaml +++ b/test-cases/apparmor-bluez-avrcp-volume.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-bluez-avrcp-volume format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: manual diff --git a/test-cases/apparmor-bluez-setup.yaml b/test-cases/apparmor-bluez-setup.yaml index f056910442ec02bfcde533dc8c96e86cda3b0047..07292bd3b8ff38a5e2e2dad52afe4f2c6c5fcb26 100644 --- a/test-cases/apparmor-bluez-setup.yaml +++ b/test-cases/apparmor-bluez-setup.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-bluez-setup format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: manual diff --git a/test-cases/apparmor-bluez.yaml b/test-cases/apparmor-bluez.yaml index f0aa3ea24019e73aa6237e6c0daa004a9850d849..d8100358e9cfea7b3f2e422f14c2af79cdcac61e 100644 --- a/test-cases/apparmor-bluez.yaml +++ b/test-cases/apparmor-bluez.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-bluez format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: manual diff --git a/test-cases/apparmor-chaiwala-system.yaml b/test-cases/apparmor-chaiwala-system.yaml index fb96a121f6f7fa7ee05d65e03df5632201272c10..8646001a0673c702cf43312c87e529ed035f2fa7 100644 --- a/test-cases/apparmor-chaiwala-system.yaml +++ b/test-cases/apparmor-chaiwala-system.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-chaiwala-system format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor-dbus.yaml b/test-cases/apparmor-dbus.yaml index b5457acbb21aafec4b653d5d59d471bb130ca582..cde628c63b56e0f05b4ae8f2fdfca37f93fc458d 100644 --- a/test-cases/apparmor-dbus.yaml +++ b/test-cases/apparmor-dbus.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-dbus format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor-folks.yaml b/test-cases/apparmor-folks.yaml index 3d9a388153baedc44fa5e81d956ef06ef68611e3..db7ed43d678482f57c560928ee99626bf381ccfd 100644 --- a/test-cases/apparmor-folks.yaml +++ b/test-cases/apparmor-folks.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-folks format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor-functional-demo.yaml b/test-cases/apparmor-functional-demo.yaml index 38f362600b132701f23a9f04c4850e6e55005ce6..be76663702db798f584653d91ba9999b30e3d7ac 100644 --- a/test-cases/apparmor-functional-demo.yaml +++ b/test-cases/apparmor-functional-demo.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-functional-demo format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor-geoclue.yaml b/test-cases/apparmor-geoclue.yaml index 8ec588faedc33dc59b52a70f3ec8fadfed44fc03..7994e807d7a8f8b7949d3ffbcc89495f534c3609 100644 --- a/test-cases/apparmor-geoclue.yaml +++ b/test-cases/apparmor-geoclue.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-geoclue format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor-gstreamer1-0.yaml b/test-cases/apparmor-gstreamer1-0.yaml index b6340c48a5975df8ff88174f7c8faae8a4936a8b..b9e071b679c0952b2127aa052a03668cd6918847 100644 --- a/test-cases/apparmor-gstreamer1-0.yaml +++ b/test-cases/apparmor-gstreamer1-0.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-gstreamer1.0 format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor-ofono.yaml b/test-cases/apparmor-ofono.yaml index 7252ab82ff782f568441f4c033e19f5eadb12085..a3b2058d78a0818e39357f6605bd051a3ac548f4 100644 --- a/test-cases/apparmor-ofono.yaml +++ b/test-cases/apparmor-ofono.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-ofono format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: manual diff --git a/test-cases/apparmor-pulseaudio.yaml b/test-cases/apparmor-pulseaudio.yaml index 1733d439dd633918b675d24a3e3dc9e4501434f6..9ca61e3107e58df71a7cb75bf986c3679b629f8c 100644 --- a/test-cases/apparmor-pulseaudio.yaml +++ b/test-cases/apparmor-pulseaudio.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-pulseaudio format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor-session-lockdown-no-deny.yaml b/test-cases/apparmor-session-lockdown-no-deny.yaml index 80bfc9fedaad40dae9c5d78c38c73599f3fe9dbb..56412f94bfd041829fc81f6ba597120ed21def13 100644 --- a/test-cases/apparmor-session-lockdown-no-deny.yaml +++ b/test-cases/apparmor-session-lockdown-no-deny.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-session-lockdown-no-deny format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: manual diff --git a/test-cases/apparmor-tracker.yaml b/test-cases/apparmor-tracker.yaml index 01c5191eda53851095ba6334ba3f2bc982c5acbb..da57d30df4d67425999864cc40433b4d1401ec78 100644 --- a/test-cases/apparmor-tracker.yaml +++ b/test-cases/apparmor-tracker.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-tracker format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor-tumbler.yaml b/test-cases/apparmor-tumbler.yaml index d23cc86d1cd1f54e29224d54cecb334bc116e705..5c097c905165afdb137ddfac731f22f808b49cb0 100644 --- a/test-cases/apparmor-tumbler.yaml +++ b/test-cases/apparmor-tumbler.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-tumbler format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor-utils.yaml b/test-cases/apparmor-utils.yaml index 646f7dbf1a9dab113f0e3a9251dc3a37cb2b90e3..5e035a08dedf0795bdc1f42a7f601676f58145e8 100644 --- a/test-cases/apparmor-utils.yaml +++ b/test-cases/apparmor-utils.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor-utils format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/apparmor.yaml b/test-cases/apparmor.yaml index 1cc9f4db48eafc5309127c45ef9650da0900f954..d6c9f1b7b36fcc51edc0e6bd83b697339a259f2b 100644 --- a/test-cases/apparmor.yaml +++ b/test-cases/apparmor.yaml @@ -1,7 +1,7 @@ metadata: name: apparmor format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: automated diff --git a/test-cases/bluez-avrcp-volume.yaml b/test-cases/bluez-avrcp-volume.yaml index 8c8e31d3fafc330af9e708b7ec14b9e475bf78db..8ae601cf1d33bd8f17e1fb72147e7d50e45f2541 100644 --- a/test-cases/bluez-avrcp-volume.yaml +++ b/test-cases/bluez-avrcp-volume.yaml @@ -1,7 +1,7 @@ metadata: name: bluez-avrcp-volume format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/bluez-hfp.yaml b/test-cases/bluez-hfp.yaml index ae11b26c066330921721b5c3264d820db9b7010a..d2e05097c5a43734b341233c87d88114e5e6a6f4 100644 --- a/test-cases/bluez-hfp.yaml +++ b/test-cases/bluez-hfp.yaml @@ -1,7 +1,7 @@ metadata: name: bluez-hfp format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/bluez-phone.yaml b/test-cases/bluez-phone.yaml index 8087b8772f2771e7e7078bc999f6aa919b65ee14..231a2ccbfe327e280596990691294f31a61f7956 100644 --- a/test-cases/bluez-phone.yaml +++ b/test-cases/bluez-phone.yaml @@ -1,7 +1,7 @@ metadata: name: bluez-phone format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/bluez-setup.yaml b/test-cases/bluez-setup.yaml index 48031df12e0c18b162d719df2a51493127be62c3..6d15b8785540679321645191b466bb6353e1bcf6 100644 --- a/test-cases/bluez-setup.yaml +++ b/test-cases/bluez-setup.yaml @@ -1,7 +1,7 @@ metadata: name: bluez-setup format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/boot-no-crashes.yaml b/test-cases/boot-no-crashes.yaml index fa2568cdecf01234adb8cd6757ce430f3398d0de..09404a729ae0eb97c9dc26e90a2b483f5a196bea 100644 --- a/test-cases/boot-no-crashes.yaml +++ b/test-cases/boot-no-crashes.yaml @@ -1,7 +1,7 @@ metadata: name: boot-no-crashes format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/boot-performance.yaml b/test-cases/boot-performance.yaml index 016b4b44f3fa8ae28a136b15ef7615464ba23b1a..1bb652eb144d39d0ee5129be5de523b915410899 100644 --- a/test-cases/boot-performance.yaml +++ b/test-cases/boot-performance.yaml @@ -1,7 +1,7 @@ metadata: name: boot-performance format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: performance exec-type: automated diff --git a/test-cases/canterbury.yaml b/test-cases/canterbury.yaml index d2a092abf9dd2b5c1542b7db3ebdce01703362a7..15f947ee2ecbf23576aa3357cf725826142f2197 100644 --- a/test-cases/canterbury.yaml +++ b/test-cases/canterbury.yaml @@ -1,7 +1,7 @@ metadata: name: canterbury format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: unit exec-type: automated diff --git a/test-cases/cgroups-resource-control.yaml b/test-cases/cgroups-resource-control.yaml index d15ad138446f88fd2fbdeaa02d57c7e3f13c37f3..c5d4ce264554ce36cfc8c3fac544f20f909ee475 100644 --- a/test-cases/cgroups-resource-control.yaml +++ b/test-cases/cgroups-resource-control.yaml @@ -1,7 +1,7 @@ metadata: name: cgroups-resource-control format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/check-dbus-services.yaml b/test-cases/check-dbus-services.yaml index e54c680d5f2528f86d02178787bede0b93dca885..1b63dbbb163601d8b547b5202b473b7fc66eb84f 100644 --- a/test-cases/check-dbus-services.yaml +++ b/test-cases/check-dbus-services.yaml @@ -1,7 +1,7 @@ metadata: name: check-dbus-services format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: sanity exec-type: automated diff --git a/test-cases/check-tiny-system-container.yaml b/test-cases/check-tiny-system-container.yaml index 693b3a90c410f54516dbc8452ed07ff01a42b2bb..cb55c4c5837352b1d9552604db444027d6acf6a8 100644 --- a/test-cases/check-tiny-system-container.yaml +++ b/test-cases/check-tiny-system-container.yaml @@ -1,7 +1,7 @@ metadata: name: check-tiny-system-container format: "Apertis Test Definition 1.0" - image-type: tiny-lxc + image-variant: tiny-lxc image-arch: any type: functional exec-type: automated diff --git a/test-cases/check-tiny-user-container.yaml b/test-cases/check-tiny-user-container.yaml index b2b588e03c031bb424f54e7787f5ac0474c200fb..502631f859d0d682326dd1fef8f1c344755037aa 100644 --- a/test-cases/check-tiny-user-container.yaml +++ b/test-cases/check-tiny-user-container.yaml @@ -1,7 +1,7 @@ metadata: name: check-tiny-user-container format: "Apertis Test Definition 1.0" - image-type: tiny-lxc + image-variant: tiny-lxc image-arch: any type: functional exec-type: automated diff --git a/test-cases/connman-new-supplicant.yaml b/test-cases/connman-new-supplicant.yaml index ae222e975e25e4097da2db0ad80ea244a3294264..81678e210cda676e0e3bc6bcabf9e99c75963412 100644 --- a/test-cases/connman-new-supplicant.yaml +++ b/test-cases/connman-new-supplicant.yaml @@ -1,7 +1,7 @@ metadata: name: connman-new-supplicant format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/connman-pan-network-access.yaml b/test-cases/connman-pan-network-access.yaml index bc70f0e424c7307e2d071c3ba0bd35aedf5a5837..bc6ce2053f5b22efb32130a906a61c300d499e66 100644 --- a/test-cases/connman-pan-network-access.yaml +++ b/test-cases/connman-pan-network-access.yaml @@ -1,7 +1,7 @@ metadata: name: connman-pan-network-access format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/connman-pan-tethering.yaml b/test-cases/connman-pan-tethering.yaml index b49945f21fe2b1cca9b2777c5f939fc805c82e38..e8986322d71a496479d65a3989e3c9bbcde3fa3b 100644 --- a/test-cases/connman-pan-tethering.yaml +++ b/test-cases/connman-pan-tethering.yaml @@ -1,7 +1,7 @@ metadata: name: connman-pan-tethering format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/connman-services.yaml b/test-cases/connman-services.yaml index 48f3ba2d8e24b3b7842f0e9a972852a0614b0197..8f9a1798520ddf3ec7c114070c9c31589d39ed26 100644 --- a/test-cases/connman-services.yaml +++ b/test-cases/connman-services.yaml @@ -1,7 +1,7 @@ metadata: name: connman-services format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/connman-usb-tethering.yaml b/test-cases/connman-usb-tethering.yaml index e2fd57585dc77e5ee09ae33c2d41b8aa8a567e50..12b026611dd837f1fe4a5c408a8b4205b89a3e78 100644 --- a/test-cases/connman-usb-tethering.yaml +++ b/test-cases/connman-usb-tethering.yaml @@ -1,7 +1,7 @@ metadata: name: connman-usb-tethering format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/connman.yaml b/test-cases/connman.yaml index 6917e227cfec246963ee7f785638c1ff49aa0689..94ac148c5393f4706fd589e6280d932e1a1b6ea0 100644 --- a/test-cases/connman.yaml +++ b/test-cases/connman.yaml @@ -1,7 +1,7 @@ metadata: name: connman format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/dbus-dos-reply-time.yaml b/test-cases/dbus-dos-reply-time.yaml index 6e87cbf19e05c1fee28a76390bed365337499b89..0d09437e099f19571472e8e59107814f4ccb2792 100644 --- a/test-cases/dbus-dos-reply-time.yaml +++ b/test-cases/dbus-dos-reply-time.yaml @@ -1,7 +1,7 @@ metadata: name: dbus-dos-reply-time format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: performance exec-type: automated diff --git a/test-cases/dbus-installed-tests.yaml b/test-cases/dbus-installed-tests.yaml index fa8ce8b467d2be7c00d61927f74c508f8f671e69..8309e22b7393a018a51c0a389320efdd29d9e854 100644 --- a/test-cases/dbus-installed-tests.yaml +++ b/test-cases/dbus-installed-tests.yaml @@ -1,7 +1,7 @@ metadata: name: dbus-installed-tests format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/didcot.yaml b/test-cases/didcot.yaml index fcc7ea8e6f1ae611036964a2cd31eaffed5fadd3..f6b9bff4d4fefbcf684d5f6db1898074fe35e047 100644 --- a/test-cases/didcot.yaml +++ b/test-cases/didcot.yaml @@ -1,7 +1,7 @@ metadata: name: didcot-service format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: unit exec-type: automated diff --git a/test-cases/eclipse-plugins-install-target.yaml b/test-cases/eclipse-plugins-install-target.yaml index 00dfd4bd226aadb32cc227433a16ed7fc159dc52..711130e2d2f01941a9a837c7ac85d2dc0da8ddd0 100644 --- a/test-cases/eclipse-plugins-install-target.yaml +++ b/test-cases/eclipse-plugins-install-target.yaml @@ -1,7 +1,7 @@ metadata: name: eclipse-plugins-install-target format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: manual diff --git a/test-cases/eclipse-plugins-remote-debugging.yaml b/test-cases/eclipse-plugins-remote-debugging.yaml index 8d9857135cfe20209e9a08acf256bb6aba479ad9..94009b2f76c614942da55677e6d5e3100dcee453 100644 --- a/test-cases/eclipse-plugins-remote-debugging.yaml +++ b/test-cases/eclipse-plugins-remote-debugging.yaml @@ -1,7 +1,7 @@ metadata: name: eclipse-plugins-remote-debugging format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: manual diff --git a/test-cases/eclipse-sysroot-management.yaml b/test-cases/eclipse-sysroot-management.yaml index 72c2d8f266544afe2630472ec8789736fd74a941..84701d367143d70578c6d9868e3c30264a35d71b 100644 --- a/test-cases/eclipse-sysroot-management.yaml +++ b/test-cases/eclipse-sysroot-management.yaml @@ -1,7 +1,7 @@ metadata: name: eclipse-sysroot-management format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: manual diff --git a/test-cases/evolution-sync-bluetooth.yaml b/test-cases/evolution-sync-bluetooth.yaml index 3da92c2eb5e0c9e2e7a8a257bc4ed8bdd57735e2..30289940f93178126a8df3bec8289d4a6a6008f9 100644 --- a/test-cases/evolution-sync-bluetooth.yaml +++ b/test-cases/evolution-sync-bluetooth.yaml @@ -1,7 +1,7 @@ metadata: name: evolution-sync-bluetooth format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/folks-alias-persistence.yaml b/test-cases/folks-alias-persistence.yaml index 288a26862bb1cd614c93b741b20ef25156dbe921..61cb33bd7079848293f56e0362d32cfde7d6dd18 100644 --- a/test-cases/folks-alias-persistence.yaml +++ b/test-cases/folks-alias-persistence.yaml @@ -1,7 +1,7 @@ metadata: name: folks-alias-persistence format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/folks-eds-compatibility.yaml b/test-cases/folks-eds-compatibility.yaml index 998bc45034bc4ac07e01f92b4589be0536b340b4..3f72f589ffe6446654be89f3d765d4090760ee1c 100644 --- a/test-cases/folks-eds-compatibility.yaml +++ b/test-cases/folks-eds-compatibility.yaml @@ -1,7 +1,7 @@ metadata: name: folks-eds-compatibility format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: compatibility exec-type: automated diff --git a/test-cases/folks-extended-info.yaml b/test-cases/folks-extended-info.yaml index d46928759d7717746fbb01d47733f6c4137356b3..3b1c33eccf366eff642bba221bef787461d67e69 100644 --- a/test-cases/folks-extended-info.yaml +++ b/test-cases/folks-extended-info.yaml @@ -1,7 +1,7 @@ metadata: name: folks-extended-info format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/folks-metacontacts-antilinking.yaml b/test-cases/folks-metacontacts-antilinking.yaml index 9146adc561d1e97847bf6e0551b0de33fc8effb0..11bc8a23e08d177f49ef43a94339eab954f46033 100644 --- a/test-cases/folks-metacontacts-antilinking.yaml +++ b/test-cases/folks-metacontacts-antilinking.yaml @@ -1,7 +1,7 @@ metadata: name: folks-metacontacts-antilinking format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/folks-metacontacts-linking.yaml b/test-cases/folks-metacontacts-linking.yaml index 98677d52530231671f21ddfbb6e948682688a573..485cba5097f75aef90d17beca7461e5df5093aa3 100644 --- a/test-cases/folks-metacontacts-linking.yaml +++ b/test-cases/folks-metacontacts-linking.yaml @@ -1,7 +1,7 @@ metadata: name: folks-metacontacts-linking format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/folks-metacontacts-unlinking.yaml b/test-cases/folks-metacontacts-unlinking.yaml index f44467b8c357079ead163aa6fa7468990b365cc8..af3da861410d8fd6c3f28684e821245e4c9acc58 100644 --- a/test-cases/folks-metacontacts-unlinking.yaml +++ b/test-cases/folks-metacontacts-unlinking.yaml @@ -1,7 +1,7 @@ metadata: name: folks-metacontacts-unlinking format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/folks-ofono-backend.yaml b/test-cases/folks-ofono-backend.yaml index fcc2b1a61196c4a0c095de4d2283c361039a511c..9730fabeb7c29b9b7e50d639e0553d382a871690 100644 --- a/test-cases/folks-ofono-backend.yaml +++ b/test-cases/folks-ofono-backend.yaml @@ -1,7 +1,7 @@ metadata: name: folks-ofono-backend format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/folks-search-contacts.yaml b/test-cases/folks-search-contacts.yaml index fe4c57608470abefdc1bb5a4ef2d72e0ca989f4b..0cab14b84fea488421bd12792ba76857d3117678 100644 --- a/test-cases/folks-search-contacts.yaml +++ b/test-cases/folks-search-contacts.yaml @@ -1,7 +1,7 @@ metadata: name: folks-search-contacts format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/folks-sync-only.yaml b/test-cases/folks-sync-only.yaml index 3d4d25eff12d0fc7076be081ffd984a9076615d7..57f69df7b239c0e06782c6e14f3729ad562c3109 100644 --- a/test-cases/folks-sync-only.yaml +++ b/test-cases/folks-sync-only.yaml @@ -1,7 +1,7 @@ metadata: name: folks-sync-only format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: unit exec-type: automated diff --git a/test-cases/frome.yaml b/test-cases/frome.yaml index 497b8c8d3942ff8e249fbd531559e70273e9871b..f03d410b5567e367b7c540ced7557850b91d1b0b 100644 --- a/test-cases/frome.yaml +++ b/test-cases/frome.yaml @@ -1,7 +1,7 @@ metadata: name: frome format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: unit exec-type: automated diff --git a/test-cases/gettext-i18n.yaml b/test-cases/gettext-i18n.yaml index 59c87d951ccdea8a4d5de89d1899124405445e1a..6306e2ef43b483e5e18d6daee12da60fd7843ddb 100644 --- a/test-cases/gettext-i18n.yaml +++ b/test-cases/gettext-i18n.yaml @@ -1,7 +1,7 @@ metadata: name: gettext-i18n format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/glib-gio-fs.yaml b/test-cases/glib-gio-fs.yaml index a7ba45b3cc88726285b18c520c2a0f0a9b54d160..6f74d8413eea478cc22cb9e7f25bf2c3734e448d 100644 --- a/test-cases/glib-gio-fs.yaml +++ b/test-cases/glib-gio-fs.yaml @@ -1,7 +1,7 @@ metadata: name: glib-gio-fs format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/grilo.yaml b/test-cases/grilo.yaml index 255a2aba5e37ce6517ead576290ed01dcb186d31..e9d0dafc73de9a63e69f062b2ed54e398d173c4f 100644 --- a/test-cases/grilo.yaml +++ b/test-cases/grilo.yaml @@ -1,7 +1,7 @@ metadata: name: grilo format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/gstreamer1-0-decode.yaml b/test-cases/gstreamer1-0-decode.yaml index 8f57093815469d2dba81a385d3cdeee8a0115aa1..2fe349ddb0eb2b6d29c7a514da566555322d1589 100644 --- a/test-cases/gstreamer1-0-decode.yaml +++ b/test-cases/gstreamer1-0-decode.yaml @@ -1,7 +1,7 @@ metadata: name: gstreamer1.0-decode format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/gupnp-services.yaml b/test-cases/gupnp-services.yaml index bbdd506667904ea6d9bee5bc195f073b4b7f3227..91fcdd34211458f9cbab88ddc415af479d94636a 100644 --- a/test-cases/gupnp-services.yaml +++ b/test-cases/gupnp-services.yaml @@ -1,7 +1,7 @@ metadata: name: gupnp-services format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/image-bootable.yaml b/test-cases/image-bootable.yaml index c53f3265c175d3edc566b9bba0740f087783545f..85215ef8e159fc6e5d29fed4f947cfaf4833c252 100644 --- a/test-cases/image-bootable.yaml +++ b/test-cases/image-bootable.yaml @@ -1,7 +1,7 @@ metadata: name: image-bootable format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/image-gui-start.yaml b/test-cases/image-gui-start.yaml index 2fd67815d789fcc2ee3fa7509fc56b3b70943113..687576039725bf0f58b4db44abb04d25dd1665d4 100644 --- a/test-cases/image-gui-start.yaml +++ b/test-cases/image-gui-start.yaml @@ -1,7 +1,7 @@ metadata: name: image-gui-start format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/iptables-basic.yaml b/test-cases/iptables-basic.yaml index ef1ed7555546c87caa445a3759cc0c7d47ef6121..5e43d6f9ccdc38a8d16233fc0bb2319b61dcaa00 100644 --- a/test-cases/iptables-basic.yaml +++ b/test-cases/iptables-basic.yaml @@ -1,7 +1,7 @@ metadata: name: iptables-basic format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/iptables-nmap.yaml b/test-cases/iptables-nmap.yaml index 647a548c22f60c3d92c6cc6ad2caf64245c47622..b3fdbf60a2b4a8809cec195ebe843d860ee6c16d 100644 --- a/test-cases/iptables-nmap.yaml +++ b/test-cases/iptables-nmap.yaml @@ -1,7 +1,7 @@ metadata: name: iptables-nmap format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/libsoup-unit.yaml b/test-cases/libsoup-unit.yaml index a5b9e23873edba6c2d90478c9e3a8d4e04d4b7e9..3e801d86abe836247048031bcc17a5d68bfd7e51 100644 --- a/test-cases/libsoup-unit.yaml +++ b/test-cases/libsoup-unit.yaml @@ -1,7 +1,7 @@ metadata: name: libsoup-unit format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: unit exec-type: automated diff --git a/test-cases/newport.yaml b/test-cases/newport.yaml index d63813c26c542bcc23e151763b740b0c030b6d1a..0f071086415d9467e88b94f2d39c91945d98b154 100644 --- a/test-cases/newport.yaml +++ b/test-cases/newport.yaml @@ -1,7 +1,7 @@ metadata: name: newport format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/ofono-sms-receive.yaml b/test-cases/ofono-sms-receive.yaml index 57b5c52f1a8eacc5bed694a7a66b7b90cedd31db..692bd96ac98b33f76560cfcf64c8c06e3d4d73d2 100644 --- a/test-cases/ofono-sms-receive.yaml +++ b/test-cases/ofono-sms-receive.yaml @@ -1,7 +1,7 @@ metadata: name: ofono-sms-receive format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/ofono-sms-send.yaml b/test-cases/ofono-sms-send.yaml index 5a23df85b33ad77c1992e8093a8f7b18f1a3785e..537ee77719beab2005ffc5ba8a266a96d90b5898 100644 --- a/test-cases/ofono-sms-send.yaml +++ b/test-cases/ofono-sms-send.yaml @@ -1,7 +1,7 @@ metadata: name: ofono-sms-send format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/polkit-parsing.yaml b/test-cases/polkit-parsing.yaml index 83c6addab59dd01d1b7031e0aa63ea4dd709e508..46abf8e5b99d092a0fcf0d4eb16bf003932e8c8b 100644 --- a/test-cases/polkit-parsing.yaml +++ b/test-cases/polkit-parsing.yaml @@ -1,7 +1,7 @@ metadata: name: polkit-parsing format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/rfkill-toggle.yaml b/test-cases/rfkill-toggle.yaml index 9b8a1510906649038c5b521f0e5955091918a341..911fb2afda1227e623cb33ea416877e5463fa032 100644 --- a/test-cases/rfkill-toggle.yaml +++ b/test-cases/rfkill-toggle.yaml @@ -1,7 +1,7 @@ metadata: name: rfkill-toggle format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: manual diff --git a/test-cases/rhosydd.yaml b/test-cases/rhosydd.yaml index f56c38228f1410df9699f9484a2ee83f8e32b236..7b8753e55a03f532ac71fee09e7b030031648173 100644 --- a/test-cases/rhosydd.yaml +++ b/test-cases/rhosydd.yaml @@ -1,7 +1,7 @@ metadata: name: rhosydd format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: unit exec-type: automated diff --git a/test-cases/ribchester.yaml b/test-cases/ribchester.yaml index c93293c38d8dc1bd23838512c65ee52a19c42414..50d98c7aaf0c1a080f3f5c571e369c081ad323e4 100644 --- a/test-cases/ribchester.yaml +++ b/test-cases/ribchester.yaml @@ -1,7 +1,7 @@ metadata: name: ribchester format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: unit exec-type: automated diff --git a/test-cases/sanity-check.yaml b/test-cases/sanity-check.yaml index 04decbeefdb899166dfde1114efe7226a834c487..2ee2fec6d7c862292860a8f5c6f856291a480666 100644 --- a/test-cases/sanity-check.yaml +++ b/test-cases/sanity-check.yaml @@ -1,7 +1,7 @@ metadata: name: sanity-check format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: sanity exec-type: all diff --git a/test-cases/sdk-ade-remote-debugging.yaml b/test-cases/sdk-ade-remote-debugging.yaml index 9f1fc9f36664a846cde54427b0e79ded96817c01..b8b24806a591838012a6f5d7a777883fb02fdd5e 100644 --- a/test-cases/sdk-ade-remote-debugging.yaml +++ b/test-cases/sdk-ade-remote-debugging.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-ade-remote-debugging format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: manual diff --git a/test-cases/sdk-code-analysis-tools-gcov.yaml b/test-cases/sdk-code-analysis-tools-gcov.yaml index 8777992410ae17f672b4086bcb24d2bc0a3b3604..554a758c6619215ef395ab17f0aeca14db9b11aa 100644 --- a/test-cases/sdk-code-analysis-tools-gcov.yaml +++ b/test-cases/sdk-code-analysis-tools-gcov.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-code-analysis-tools-gcov format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: automated diff --git a/test-cases/sdk-code-analysis-tools-splint.yaml b/test-cases/sdk-code-analysis-tools-splint.yaml index 6a2ec489320eca2b684a4192f444c918f8c6cac0..edeb318062e96e70023048ae41230befc5d77b8a 100644 --- a/test-cases/sdk-code-analysis-tools-splint.yaml +++ b/test-cases/sdk-code-analysis-tools-splint.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-code-analysis-tools-splint format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: automated diff --git a/test-cases/sdk-cross-compilation.yaml b/test-cases/sdk-cross-compilation.yaml index 7a310acada9b8b05f93fe9a74d573c6d6803b9cf..015abc28f40a00e7dd846bb9bbdd58f12d313cc3 100644 --- a/test-cases/sdk-cross-compilation.yaml +++ b/test-cases/sdk-cross-compilation.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-cross-compilation format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/sdk-dbus-tools-bustle.yaml b/test-cases/sdk-dbus-tools-bustle.yaml index 64ad49d42d9821c48d79c06b50b3f783dd0a9942..b93f81fc2aaabb4c9f20b96937e733ebfe45b98f 100644 --- a/test-cases/sdk-dbus-tools-bustle.yaml +++ b/test-cases/sdk-dbus-tools-bustle.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-dbus-tools-bustle format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: performance exec-type: manual diff --git a/test-cases/sdk-dbus-tools-d-feet.yaml b/test-cases/sdk-dbus-tools-d-feet.yaml index c4fbce5ddbad20d94bb669761a7dca21cee66156..0c285d6012e8155f1a36bfd0f800fae211599baa 100644 --- a/test-cases/sdk-dbus-tools-d-feet.yaml +++ b/test-cases/sdk-dbus-tools-d-feet.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-dbus-tools-d-feet format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: performance exec-type: manual diff --git a/test-cases/sdk-debug-tools-gdb.yaml b/test-cases/sdk-debug-tools-gdb.yaml index b3392f81cd6c8fdc7e118b66e8d54a578644e5f9..11d591777fc523c65edd5e66b16b2c7d525f96a6 100644 --- a/test-cases/sdk-debug-tools-gdb.yaml +++ b/test-cases/sdk-debug-tools-gdb.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-debug-tools-gdb format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: automated diff --git a/test-cases/sdk-debug-tools-strace.yaml b/test-cases/sdk-debug-tools-strace.yaml index 4ab760b1b363f60d1a44a6c45e3e86c27033d7f6..aa3311de29bb1a95956390ccad19690c76b2a42a 100644 --- a/test-cases/sdk-debug-tools-strace.yaml +++ b/test-cases/sdk-debug-tools-strace.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-debug-tools-strace format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: automated diff --git a/test-cases/sdk-debug-tools-valgrind.yaml b/test-cases/sdk-debug-tools-valgrind.yaml index 00e29536429d8f11c39db4b07c2ca31caa03a8b0..cb9d07b332f130d957432ad7480147a8a516c511 100644 --- a/test-cases/sdk-debug-tools-valgrind.yaml +++ b/test-cases/sdk-debug-tools-valgrind.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-debug-tools-valgrind format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: automated diff --git a/test-cases/sdk-ide-build-run-program.yaml b/test-cases/sdk-ide-build-run-program.yaml index 42c73027252dae16405d365e91d2bf22a85b1553..c55c91f66b1bd335cb92190788828ad34fc7aeb0 100644 --- a/test-cases/sdk-ide-build-run-program.yaml +++ b/test-cases/sdk-ide-build-run-program.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-ide-build-run-program format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: manual diff --git a/test-cases/sdk-performance-tools-gprof.yaml b/test-cases/sdk-performance-tools-gprof.yaml index 64624c8314fb7e3459a00c3d3dc50436a788649b..b405c42e6fa0a16013304d3feac6ce5e73dc8338 100644 --- a/test-cases/sdk-performance-tools-gprof.yaml +++ b/test-cases/sdk-performance-tools-gprof.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-performance-tools-gprof format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: automated diff --git a/test-cases/sdk-performance-tools-sysprof.yaml b/test-cases/sdk-performance-tools-sysprof.yaml index 02a688979d02f31cae543074eeb1a5efcd6a540a..5add7e7bf1c77e2b6bb276057984955e1a1c28a1 100644 --- a/test-cases/sdk-performance-tools-sysprof.yaml +++ b/test-cases/sdk-performance-tools-sysprof.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-performance-tools-sysprof format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: automated diff --git a/test-cases/sdk-vb-fullscreen.yaml b/test-cases/sdk-vb-fullscreen.yaml index 70cf17fcb6158b1fdca6504d9d3cab666b59710a..183c7eda9e8626075ad21130de48833643a567fb 100644 --- a/test-cases/sdk-vb-fullscreen.yaml +++ b/test-cases/sdk-vb-fullscreen.yaml @@ -1,7 +1,7 @@ metadata: name: sdk-vb-fullscreen format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: compatibility exec-type: manual diff --git a/test-cases/telepathy-ring-automated.yaml b/test-cases/telepathy-ring-automated.yaml index 8173129916bd88ef5681dc3b4722c69c42c99883..53de5b32732ace6051dd9b25277a52c17452473d 100644 --- a/test-cases/telepathy-ring-automated.yaml +++ b/test-cases/telepathy-ring-automated.yaml @@ -1,7 +1,7 @@ metadata: name: telepathy-ring-automated format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: automated diff --git a/test-cases/telepathy-ring.yaml b/test-cases/telepathy-ring.yaml index e076d36b7794cc5467c7bdbe1a835aaf38210a69..abe0429d9444fe8c3afca137678c084e63236af9 100644 --- a/test-cases/telepathy-ring.yaml +++ b/test-cases/telepathy-ring.yaml @@ -1,7 +1,7 @@ metadata: name: telepathy-ring format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/tracker-indexing-local-storage.yaml b/test-cases/tracker-indexing-local-storage.yaml index 734c451d7f04933b71763cfb05abac11e605b6aa..7e422e7061ce0616bb1d65d1ed5ba32a25966af7 100644 --- a/test-cases/tracker-indexing-local-storage.yaml +++ b/test-cases/tracker-indexing-local-storage.yaml @@ -1,7 +1,7 @@ metadata: name: tracker-indexing-local-storage format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/tracker-indexing-mass-storage.yaml b/test-cases/tracker-indexing-mass-storage.yaml index 6ce71c5478fb58376db67a735818f1b644a2afe7..983a36c257a066c541dea7c7ec405e0ab871b944 100644 --- a/test-cases/tracker-indexing-mass-storage.yaml +++ b/test-cases/tracker-indexing-mass-storage.yaml @@ -1,7 +1,7 @@ metadata: name: tracker-indexing-mass-storage format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/traffic-control-basic.yaml b/test-cases/traffic-control-basic.yaml index dc32accf73598680e507083fcef43aa27db5bfdd..9568277cec73342840a5c331f0f836bf9ea9ccc1 100644 --- a/test-cases/traffic-control-basic.yaml +++ b/test-cases/traffic-control-basic.yaml @@ -1,7 +1,7 @@ metadata: name: traffic-control-basic format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/traprain.yaml b/test-cases/traprain.yaml index 261d2f0b0ddae0ec3f302fc9dcb0994cd0a6ee42..f3f2b6d4fbc89d548b4de35a12b50b5728951d0a 100644 --- a/test-cases/traprain.yaml +++ b/test-cases/traprain.yaml @@ -1,7 +1,7 @@ metadata: name: traprain format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: unit exec-type: automated diff --git a/test-cases/tumbler-thumbnailing.yaml b/test-cases/tumbler-thumbnailing.yaml index c3cd98ea7456758ca45435ab3909eac9c965223a..b4be31888feb74c132718b52c49781cb60fa6e40 100644 --- a/test-cases/tumbler-thumbnailing.yaml +++ b/test-cases/tumbler-thumbnailing.yaml @@ -1,7 +1,7 @@ metadata: name: tumbler-thumbnailing format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: automated diff --git a/test-cases/video-animation-on-boot.yaml b/test-cases/video-animation-on-boot.yaml index 6e2e47fbb21865340db7d2b259fceb5e4bb76fa6..b1c3ca064cd06e5d434ad95211c4c9ed478f6eac 100644 --- a/test-cases/video-animation-on-boot.yaml +++ b/test-cases/video-animation-on-boot.yaml @@ -1,7 +1,7 @@ metadata: name: video-animation-on-boot format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-ac-3d-rendering.yaml b/test-cases/webkit2gtk-ac-3d-rendering.yaml index 017d209cead7f2c2cc1b5aea5c86899398e0e590..e6097445724bc164915b4947d3eb6750e596061b 100644 --- a/test-cases/webkit2gtk-ac-3d-rendering.yaml +++ b/test-cases/webkit2gtk-ac-3d-rendering.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-ac-3d-rendering format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-ac-animations.yaml b/test-cases/webkit2gtk-ac-animations.yaml index 75925a9124a9b42786edf2aff9c5615452149529..bef437a50fe36fbde7a917206d2c7f79d4b3b968 100644 --- a/test-cases/webkit2gtk-ac-animations.yaml +++ b/test-cases/webkit2gtk-ac-animations.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-ac-animations format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-ac-scrolling.yaml b/test-cases/webkit2gtk-ac-scrolling.yaml index 0bf28944704166c1f66b1336496c2f4ca073a7b7..4f2716ae7149b928c360e442b33ff856d606c937 100644 --- a/test-cases/webkit2gtk-ac-scrolling.yaml +++ b/test-cases/webkit2gtk-ac-scrolling.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-ac-scrolling format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-actor-tiles.yaml b/test-cases/webkit2gtk-actor-tiles.yaml index ef73d2055af966a2a32ee0eafc02613381d81523..01d886ab8412bf3ae8ea94d0eab56436656a7a37 100644 --- a/test-cases/webkit2gtk-actor-tiles.yaml +++ b/test-cases/webkit2gtk-actor-tiles.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-actor-tiles format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-aligned-scroll.yaml b/test-cases/webkit2gtk-aligned-scroll.yaml index d31a8f2ea11eba4de5ffb4583243060e08b7f388..fd27a29d4cd3d5f9c707ff9c0a66615d72b1099f 100644 --- a/test-cases/webkit2gtk-aligned-scroll.yaml +++ b/test-cases/webkit2gtk-aligned-scroll.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-aligned-scroll format: "Apertis Test Definition 1.0" - image-type: target + image-variant: target image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-contextual-zoom.yaml b/test-cases/webkit2gtk-contextual-zoom.yaml index 9e0106cc396aeb2e4f11ffb490da37462b800e93..6682b26d6e65532e1f8c84a4b75f413a21b5fa90 100644 --- a/test-cases/webkit2gtk-contextual-zoom.yaml +++ b/test-cases/webkit2gtk-contextual-zoom.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-contextual-zoom format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-drag-and-drop.yaml b/test-cases/webkit2gtk-drag-and-drop.yaml index fce183fc1378277aa5439e96a6b6e763dd6f8225..046f85d72a2060457d51661cf87c0127995316f5 100644 --- a/test-cases/webkit2gtk-drag-and-drop.yaml +++ b/test-cases/webkit2gtk-drag-and-drop.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-drag-and-drop format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-event-handling-redesign.yaml b/test-cases/webkit2gtk-event-handling-redesign.yaml index d4deb9dbb94978237d3ae912477a661940bb93ff..0fa37094d46d2b4c776ba2618449d46d093dae70 100644 --- a/test-cases/webkit2gtk-event-handling-redesign.yaml +++ b/test-cases/webkit2gtk-event-handling-redesign.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-event-handling-redesign format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-gstreamer1.0.yaml b/test-cases/webkit2gtk-gstreamer1.0.yaml index 0ff8aa1c8f0e67065ce0494b0c9b7b4ce2bff798..a7367d97d381cc745ec914e000f18efde64ba885 100644 --- a/test-cases/webkit2gtk-gstreamer1.0.yaml +++ b/test-cases/webkit2gtk-gstreamer1.0.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-gstreamer1.0 format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-lazy-click.yaml b/test-cases/webkit2gtk-lazy-click.yaml index 5f6a5f5e8b562d15c22adefcdc1dbbccf8b90e25..6e3c996f3a3c1942fed845c0fbd3fc6e1e2f6ac7 100644 --- a/test-cases/webkit2gtk-lazy-click.yaml +++ b/test-cases/webkit2gtk-lazy-click.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-lazy-click format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/webkit2gtk-mt-touch-events.yaml b/test-cases/webkit2gtk-mt-touch-events.yaml index 601cc750490de5d666add62a17ed90ec05aca78e..a7a7479f86d93d09e02697146258ac5a05d7a738 100644 --- a/test-cases/webkit2gtk-mt-touch-events.yaml +++ b/test-cases/webkit2gtk-mt-touch-events.yaml @@ -1,7 +1,7 @@ metadata: name: webkit2gtk-mt-touch-events format: "Apertis Test Definition 1.0" - image-type: any + image-variant: any image-arch: any type: functional exec-type: manual diff --git a/test-cases/x-hw-accelerated.yaml b/test-cases/x-hw-accelerated.yaml index 2212c419732c6012c43f5de14e8bd13810d75347..56e95e543c585ba9b9b42fcc6af7b1a4f6196890 100644 --- a/test-cases/x-hw-accelerated.yaml +++ b/test-cases/x-hw-accelerated.yaml @@ -1,7 +1,7 @@ metadata: name: x-hw-accelerated format: "Apertis Test Definition 1.0" - image-type: SDK + image-variant: SDK image-arch: amd64 type: functional exec-type: manual