aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gen/edf_generators.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gen/edf_generators.py b/gen/edf_generators.py
index 5b7cd48..eda23e4 100644
--- a/gen/edf_generators.py
+++ b/gen/edf_generators.py
@@ -266,5 +266,7 @@ class CflSplitPgmGenerator(EdfPgmGenerator):
266 266
267 # the test will compute job splits if it is in the desgin point. 267 # the test will compute job splits if it is in the desgin point.
268 is_sched, ts = PARTITION_METHOD[exp_params['partitions']](ts, graphs, subts, dp, overheads) 268 is_sched, ts = PARTITION_METHOD[exp_params['partitions']](ts, graphs, subts, dp, overheads)
269 269 if exp_params['level'] == 'ALL':
270 # kludge: assume global task sets are always schedulable
271 is_sched = True
270 return is_sched, ts 272 return is_sched, ts