From 29f9bbbbf5517507b4cc3dc4d03fd9f9da2c4da5 Mon Sep 17 00:00:00 2001 From: Brendan Jackman Date: Tue, 28 Mar 2017 15:08:15 +0100 Subject: [PATCH] tests/eas/generic: Remove unused skip_on_smp flag None of the tests are big.LITTLE specific any more, they can all usefully be run on any target, so remove this flag. Also note that the `and not test_env.nrg_model.is_heterogeneous:` is broken because `test_env` is not defined here, as.. Reported-by: Valentin Schneider Fixes: 113ce343beab "tests/eas: Un-factorise code that is no longer shared" --- tests/eas/generic.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/eas/generic.py b/tests/eas/generic.py index 70aae3462..35b6ca6bb 100644 --- a/tests/eas/generic.py +++ b/tests/eas/generic.py @@ -64,9 +64,6 @@ class _EnergyModelTest(LisaTest): }, } - # Set to true to run a test only on heterogeneous systems - skip_on_smp = False - negative_slack_allowed_pct = 15 """Percentage of RT-App task activations with negative slack allowed""" @@ -82,9 +79,6 @@ class _EnergyModelTest(LisaTest): @classmethod def _getExperimentsConf(cls, *args, **kwargs): - if cls.skip_on_smp and not test_env.nrg_model.is_heterogeneous: - raise SkipTest('Test not required on symmetric systems') - return { 'wloads' : cls.workloads, 'confs' : [energy_aware_conf] -- GitLab