Skip to content
Snippets Groups Projects
Commit 4d06a3d1 authored by Frederic Danis's avatar Frederic Danis
Browse files

lava: Prevent AUM tests to be generated for RPi board


RPi fails on AUM tests on Lava due to U-Boot.
This introduce a workaround to prevent those tests to be run.

Signed-off-by: default avatarFrédéric Danis <frederic.danis@collabora.com>
parent c000fc66
No related branches found
No related tags found
1 merge request!422lava: Prevent AUM tests to be generated for RPi board
Pipeline #344328 passed
Pipeline: apertis-test-cases-web

#344329

    ......@@ -115,6 +115,12 @@ class JobGenerator:
    if not group_name:
    logger.warning(f"Automated test {test_meta['name']} has no group entry") # make me an error
    # Workaround: RPi64 U-Boot doesn't currently support boot
    # counting on Lava and all aum* tests are failing
    if group_name.startswith("aum") and self.args.board == "rpi64":
    logger.warning(f"{test_meta['name']}: AUM tests are temporarily skipped on {self.args.board}")
    continue
    group = tests.setdefault(group_name, []).append(test_meta['name'])
    return tests
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment