source: rtems-schedsim/schedsim/shell/schedsim_smpsimple/scenarios/cpus1_priority.scen @ 4be3859

Last change on this file since 4be3859 was 3ad6235, checked in by Jennifer Averett <jennifer.averett@…>, on 05/13/14 at 14:30:12

schedsim_smpsimple: Clean up scenarios to match changes.

Dispatch commands were removed since a dispatch of all cpu's was
added to the dispatch wrapper. Scenarios wich only use preemptable
tasks were modified to account for changes in scheduling and
changes in expected output format.

  • Property mode set to 100644
File size: 509 bytes
Line 
1#
2#  Check increasing and decrease priority self with no change
3#
4rtems_init 1
5task_create smp1 5
6task_create smp2 8
7dispatch
8# GOAL: 0x0a010001 is heir and executing on CPU 0
9cpus
10
11task_priority smp1 4
12# GOAL: 0x0a010001 is still heir and executing on CPU 0
13cpus
14
15task_priority smp1 7
16# GOAL: 0x0a010001 is still heir and executing on CPU 0
17cpus
18
19task_priority smp1 8
20# GOAL: 0x0a010002 is now heir and executing on CPU 0
21cpus
22
23task_priority smp1 5
24# GOAL: 0x0a010001 is now heir and executing on CPU 0
25cpus
Note: See TracBrowser for help on using the repository browser.