Skip to content

Commit

Permalink
[fiber] Do not exclude fiber tests on arm64 anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
rleh committed Jan 20, 2024
1 parent ff68ca6 commit a6aea7c
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions test/modm/processing/module.lb
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,15 @@ def prepare(module, options):
"modm:architecture",
"modm:math:utils",
"modm:math:filter",
"modm:processing:fiber",
"modm:processing:protothread",
"modm:processing:resumable",
"modm:processing:timer",
"modm:processing:scheduler",
":mock:clock")
if "arm64" not in options[":target"].get_driver("core")["type"]:
module.depends("modm:processing:fiber")
return True


def build(env):
env.outbasepath = "modm-test/src/modm-test/processing"
if "arm64" in env[":target"].get_driver("core")["type"]:
env.copy('.', ignore=env.ignore_paths("fiber"))
else:
env.copy('.')
env.copy('.')

0 comments on commit a6aea7c

Please sign in to comment.