diff options
author | Andrew Morrow <andrew.morrow@viam.com> | 2024-01-24 16:22:36 (GMT) |
---|---|---|
committer | Andrew Morrow <andrew.morrow@viam.com> | 2024-01-24 16:22:36 (GMT) |
commit | a3ac1ddd1452f309d8986a0574c3980c487bd904 (patch) | |
tree | 615e92b3cb6992719ed64f52438d845dd21caa6a | |
parent | c467ec23947e75ab16fe100913d8625c42a99ab6 (diff) | |
download | SCons-a3ac1ddd1452f309d8986a0574c3980c487bd904.zip SCons-a3ac1ddd1452f309d8986a0574c3980c487bd904.tar.gz SCons-a3ac1ddd1452f309d8986a0574c3980c487bd904.tar.bz2 |
Run legacy parallel test case in legacy sched mode
-rw-r--r-- | SCons/Taskmaster/JobTests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SCons/Taskmaster/JobTests.py b/SCons/Taskmaster/JobTests.py index 9e76ae0..ce2b3db 100644 --- a/SCons/Taskmaster/JobTests.py +++ b/SCons/Taskmaster/JobTests.py @@ -313,7 +313,9 @@ class ParallelTestCase(JobTestCase): try: taskmaster = Taskmaster(3, self, SleepTask) + OptionsParser.values.experimental.append('legacy_sched') jobs = SCons.Taskmaster.Job.Jobs(2, taskmaster) + OptionsParser.values.experimental.pop() jobs.run() # The key here is that we get(1) and get(2) from the |