summaryrefslogtreecommitdiffstats
path: root/testsuites/validation/tr-tq-surrender-mrsp.c
blob: 903146ccbeb91d2cf3550c62dd7e7cee58860146 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
/* SPDX-License-Identifier: BSD-2-Clause */

/**
 * @file
 *
 * @ingroup ScoreTqReqSurrenderMrsp
 */

/*
 * Copyright (C) 2021 embedded brains GmbH & Co. KG
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

/*
 * This file is part of the RTEMS quality process and was automatically
 * generated.  If you find something that needs to be fixed or
 * worded better please post a report or patch to an RTEMS mailing list
 * or raise a bug report:
 *
 * https://www.rtems.org/bugs.html
 *
 * For information on updating and regenerating please refer to the How-To
 * section in the Software Requirements Engineering chapter of the
 * RTEMS Software Engineering manual.  The manual is provided as a part of
 * a release.  For development sources please refer to the online
 * documentation at:
 *
 * https://docs.rtems.org
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/score/threadimpl.h>

#include "tr-tq-surrender-mrsp.h"
#include "tx-support.h"

#include <rtems/test.h>

/**
 * @defgroup ScoreTqReqSurrenderMrsp spec:/score/tq/req/surrender-mrsp
 *
 * @ingroup TestsuitesValidationNoClock0
 *
 * @{
 */

typedef struct {
  uint32_t Skip : 1;
  uint32_t Pre_InheritedPriority_NA : 1;
  uint32_t Pre_PreviousHelping_NA : 1;
  uint32_t Pre_Scheduler_NA : 1;
  uint32_t Pre_NewHelping_NA : 1;
  uint32_t Pre_Suspended_NA : 1;
  uint32_t Pre_WaitState_NA : 1;
  uint32_t Post_Dequeue : 1;
  uint32_t Post_Unblock : 1;
  uint32_t Post_PreviousOwnerPriority : 2;
  uint32_t Post_RemoveHelper : 2;
  uint32_t Post_AddHelper : 2;
  uint32_t Post_Suspended : 2;
} ScoreTqReqSurrenderMrsp_Entry;

/**
 * @brief Test context for spec:/score/tq/req/surrender-mrsp test case.
 */
typedef struct {
  /**
   * @brief If this member is true, then all priorities of the previous owner
   *   inherited from the thread queue thread shall be dispensable.
   */
  bool inherited_priorities_are_dispensible;

  /**
   * @brief If this member is true, then all helping schedulers of the previous
   *   owner thread gained through the thread queue shall be dispensable.
   */
  bool helping_schedules_are_dispensible;

  /**
   * @brief If this member is true, then the previous owner thread shall use
   *   helping scheduler.
   */
  bool use_helping_scheduler;

  /**
   * @brief If this member is true, then the new owner thread shall gain a
   *   vital helping scheduler.
   */
  bool gains_new_helping_scheduler;

  /**
   * @brief If this member is true, then the new owner thread shall be
   *   suspended.
   */
  bool suspended;

  /**
   * @brief If this member is true, then the new owner thread shall be in the
   *   intend to block wait state.
   */
  bool intend_to_block;

  /**
   * @brief This member contains the current priority of the previous owner
   *   thread before the thread queue surrender operation.
   */
  rtems_task_priority priority_before;

  /**
   * @brief This member contains the current priority of the previous owner
   *   thread after the thread queue surrender operation.
   */
  rtems_task_priority priority_after;

  /**
   * @brief This member contains the identifier of the previous owner thread.
   */
  rtems_id previous_owner;

  /**
   * @brief This member contains a copy of the corresponding
   *   ScoreTqReqSurrenderMrsp_Run() parameter.
   */
  TQContext *tq_ctx;

  struct {
    /**
     * @brief This member defines the pre-condition states for the next action.
     */
    size_t pcs[ 6 ];

    /**
     * @brief If this member is true, then the test action loop is executed.
     */
    bool in_action_loop;

    /**
     * @brief This member contains the next transition map index.
     */
    size_t index;

    /**
     * @brief This member contains the current transition map entry.
     */
    ScoreTqReqSurrenderMrsp_Entry entry;

    /**
     * @brief If this member is true, then the current transition variant
     *   should be skipped.
     */
    bool skip;
  } Map;
} ScoreTqReqSurrenderMrsp_Context;

static ScoreTqReqSurrenderMrsp_Context
  ScoreTqReqSurrenderMrsp_Instance;

static const char * const ScoreTqReqSurrenderMrsp_PreDesc_InheritedPriority[] = {
  "Vital",
  "Dispensable",
  "NA"
};

static const char * const ScoreTqReqSurrenderMrsp_PreDesc_PreviousHelping[] = {
  "Vital",
  "Dispensable",
  "NA"
};

static const char * const ScoreTqReqSurrenderMrsp_PreDesc_Scheduler[] = {
  "Home",
  "Helping",
  "NA"
};

static const char * const ScoreTqReqSurrenderMrsp_PreDesc_NewHelping[] = {
  "Vital",
  "Dispensable",
  "NA"
};

static const char * const ScoreTqReqSurrenderMrsp_PreDesc_Suspended[] = {
  "Yes",
  "No",
  "NA"
};

static const char * const ScoreTqReqSurrenderMrsp_PreDesc_WaitState[] = {
  "IntendToBlock",
  "NA"
};

static const char * const * const ScoreTqReqSurrenderMrsp_PreDesc[] = {
  ScoreTqReqSurrenderMrsp_PreDesc_InheritedPriority,
  ScoreTqReqSurrenderMrsp_PreDesc_PreviousHelping,
  ScoreTqReqSurrenderMrsp_PreDesc_Scheduler,
  ScoreTqReqSurrenderMrsp_PreDesc_NewHelping,
  ScoreTqReqSurrenderMrsp_PreDesc_Suspended,
  ScoreTqReqSurrenderMrsp_PreDesc_WaitState,
  NULL
};

typedef ScoreTqReqSurrenderMrsp_Context Context;

static const rtems_tcb *GetUnblock( Context *ctx, size_t *index )
{
  return TQGetNextUnblock( ctx->tq_ctx, index )->thread;
}

static void ScoreTqReqSurrenderMrsp_Pre_InheritedPriority_Prepare(
  ScoreTqReqSurrenderMrsp_Context              *ctx,
  ScoreTqReqSurrenderMrsp_Pre_InheritedPriority state
)
{
  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Pre_InheritedPriority_Vital: {
      /*
       * While at least one priority inherited through the thread queue for the
       * previous owner is the highest priority of the previous owner.
       */
      ctx->inherited_priorities_are_dispensible = false;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_InheritedPriority_Dispensable: {
      /*
       * While all priorities inherited through the thread queue for the
       * previous owner are not the highest priority of the previous owner.
       */
      ctx->inherited_priorities_are_dispensible = true;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_InheritedPriority_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Pre_PreviousHelping_Prepare(
  ScoreTqReqSurrenderMrsp_Context            *ctx,
  ScoreTqReqSurrenderMrsp_Pre_PreviousHelping state
)
{
  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Pre_PreviousHelping_Vital: {
      /*
       * While at least one helping scheduler of the previous owner is only
       * available due to a priority inherited through the thread queue.
       */
      ctx->helping_schedules_are_dispensible = false;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_PreviousHelping_Dispensable: {
      /*
       * While all helping scheduler of the previous owner are not only
       * available due to a priority inherited through the thread queue.
       */
      ctx->helping_schedules_are_dispensible = true;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_PreviousHelping_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Pre_Scheduler_Prepare(
  ScoreTqReqSurrenderMrsp_Context      *ctx,
  ScoreTqReqSurrenderMrsp_Pre_Scheduler state
)
{
  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Pre_Scheduler_Home: {
      /*
       * While the previous owner executes in its home scheduler.
       */
      ctx->use_helping_scheduler = false;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_Scheduler_Helping: {
      /*
       * While the previous owner executes in a helping scheduler which is
       * available due to a priority inherited through the thread queue.
       */
      ctx->use_helping_scheduler = true;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_Scheduler_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Pre_NewHelping_Prepare(
  ScoreTqReqSurrenderMrsp_Context       *ctx,
  ScoreTqReqSurrenderMrsp_Pre_NewHelping state
)
{
  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Pre_NewHelping_Vital: {
      /*
       * While at least one helping scheduler of the new owner is only
       * available due to a priority inherited through the thread queue.
       */
      ctx->gains_new_helping_scheduler = true;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_NewHelping_Dispensable: {
      /*
       * While all helping scheduler of the new owner are not only available
       * due to a priority inherited through the thread queue.
       */
      ctx->gains_new_helping_scheduler = false;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_NewHelping_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Pre_Suspended_Prepare(
  ScoreTqReqSurrenderMrsp_Context      *ctx,
  ScoreTqReqSurrenderMrsp_Pre_Suspended state
)
{
  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Pre_Suspended_Yes: {
      /*
       * While the new owner is suspended.
       */
      ctx->suspended = true;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_Suspended_No: {
      /*
       * While the new owner is not suspended.
       */
      ctx->suspended = false;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_Suspended_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Pre_WaitState_Prepare(
  ScoreTqReqSurrenderMrsp_Context      *ctx,
  ScoreTqReqSurrenderMrsp_Pre_WaitState state
)
{
  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Pre_WaitState_IntendToBlock: {
      /*
       * While the new owner is in the intend to block wait state.
       */
      ctx->intend_to_block = true;
      break;
    }

    case ScoreTqReqSurrenderMrsp_Pre_WaitState_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Post_Dequeue_Check(
  ScoreTqReqSurrenderMrsp_Context     *ctx,
  ScoreTqReqSurrenderMrsp_Post_Dequeue state
)
{
  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority: {
      /*
       * The first thread in priority order shall be dequeued from the thread
       * queue.
       */
      /* Validation is done by spec:/score/tq/req/enqueue-priority */
      break;
    }

    case ScoreTqReqSurrenderMrsp_Post_Dequeue_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Post_Unblock_Check(
  ScoreTqReqSurrenderMrsp_Context     *ctx,
  ScoreTqReqSurrenderMrsp_Post_Unblock state
)
{
  size_t i;

  i = 0;

  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Post_Unblock_No: {
      /*
       * The dequeued thread shall not be unblocked by the thread queue
       * surrender operation.
       */
      T_eq_ptr( GetUnblock( ctx, &i ), NULL );
      break;
    }

    case ScoreTqReqSurrenderMrsp_Post_Unblock_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Check(
  ScoreTqReqSurrenderMrsp_Context                   *ctx,
  ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority state
)
{
  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Drop: {
      /*
       * Each eligible priority of the previous owner which had the highest
       * priority inherited through the thread queue shall be updated.
       */
      T_eq_u32( ctx->priority_after, PRIO_NORMAL );
      break;
    }

    case ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Nop: {
      /*
       * No eligible priority of the previous owner shall be updated.
       */
      T_eq_u32( ctx->priority_after, ctx->priority_before );
      break;
    }

    case ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Check(
  ScoreTqReqSurrenderMrsp_Context          *ctx,
  ScoreTqReqSurrenderMrsp_Post_RemoveHelper state
)
{
  rtems_status_code   sc;
  rtems_task_priority priority;

  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Yes: {
      /*
       * Each helping scheduler of the previous owner which was only available
       * due to a priority inherited through the thread queue shall be removed
       * from the previous owner.
       */
      sc = rtems_task_get_priority(
        ctx->previous_owner,
        SCHEDULER_B_ID,
        &priority
      );
      T_rsc( sc, RTEMS_NOT_DEFINED );
      break;
    }

    case ScoreTqReqSurrenderMrsp_Post_RemoveHelper_No: {
      /*
       * No helping scheduler shall be removed from the previous owner.
       */
      sc = rtems_task_get_priority(
        ctx->previous_owner,
        SCHEDULER_B_ID,
        &priority
      );
      #if defined(RTEMS_SMP)
      T_rsc_success( sc );

      if ( ctx->tq_ctx->enqueue_variant == TQ_ENQUEUE_STICKY ) {
        T_eq_u32( priority, PRIO_LOW );
      } else {
        T_eq_u32( priority, PRIO_HIGH );
      }
      #else
      T_rsc( sc, RTEMS_INVALID_ID );
      #endif
      break;
    }

    case ScoreTqReqSurrenderMrsp_Post_RemoveHelper_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Post_AddHelper_Check(
  ScoreTqReqSurrenderMrsp_Context       *ctx,
  ScoreTqReqSurrenderMrsp_Post_AddHelper state
)
{
  rtems_status_code   sc;
  rtems_task_priority priority;

  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Post_AddHelper_Yes: {
      /*
       * Each helping scheduler of the new owner which is only available due to
       * a priority inherited through the thread queue shall be added to the
       * new owner.
       */
      sc = rtems_task_get_priority(
        ctx->tq_ctx->worker_id[ TQ_BLOCKER_A ],
        SCHEDULER_A_ID,
        &priority
      );
      T_rsc_success( sc );

      if ( ctx->tq_ctx->enqueue_variant == TQ_ENQUEUE_STICKY ) {
        T_eq_u32( priority, PRIO_VERY_HIGH );
      } else {
        T_eq_u32( priority, PRIO_LOW );
      }
      break;
    }

    case ScoreTqReqSurrenderMrsp_Post_AddHelper_No: {
      /*
       * No helping scheduler shall added to the new owner.
       */
      sc = rtems_task_get_priority(
        ctx->tq_ctx->worker_id[ TQ_BLOCKER_A ],
        SCHEDULER_A_ID,
        &priority
      );
      #if defined(RTEMS_SMP)
      T_rsc( sc, RTEMS_NOT_DEFINED );
      #else
      T_rsc_success( sc );
      T_eq_u32( priority, PRIO_HIGH );
      #endif
      break;
    }

    case ScoreTqReqSurrenderMrsp_Post_AddHelper_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Post_Suspended_Check(
  ScoreTqReqSurrenderMrsp_Context       *ctx,
  ScoreTqReqSurrenderMrsp_Post_Suspended state
)
{
  switch ( state ) {
    case ScoreTqReqSurrenderMrsp_Post_Suspended_Yes: {
      /*
       * The new owner shall be suspended.
       */
      T_true( IsTaskSuspended( ctx->tq_ctx->worker_id[ TQ_BLOCKER_A ] ) );
      break;
    }

    case ScoreTqReqSurrenderMrsp_Post_Suspended_No: {
      /*
       * The new owner shall be not suspended.
       */
      T_false( IsTaskSuspended( ctx->tq_ctx->worker_id[ TQ_BLOCKER_A ] ) );
      break;
    }

    case ScoreTqReqSurrenderMrsp_Post_Suspended_NA:
      break;
  }
}

static void ScoreTqReqSurrenderMrsp_Setup(
  ScoreTqReqSurrenderMrsp_Context *ctx
)
{
  TQReset( ctx->tq_ctx );
  TQSetScheduler( ctx->tq_ctx, TQ_BLOCKER_A, SCHEDULER_B_ID, PRIO_NORMAL );
  TQSetPriority( ctx->tq_ctx, TQ_BLOCKER_B, PRIO_VERY_HIGH );
  TQSetScheduler( ctx->tq_ctx, TQ_BLOCKER_C, SCHEDULER_B_ID, PRIO_LOW );
  TQSetPriority( ctx->tq_ctx, TQ_BLOCKER_D, PRIO_VERY_HIGH );
  TQSetPriority( ctx->tq_ctx, TQ_HELPER_A, PRIO_NORMAL );
}

static void ScoreTqReqSurrenderMrsp_Setup_Wrap( void *arg )
{
  ScoreTqReqSurrenderMrsp_Context *ctx;

  ctx = arg;
  ctx->Map.in_action_loop = false;
  ScoreTqReqSurrenderMrsp_Setup( ctx );
}

static void ScoreTqReqSurrenderMrsp_Teardown(
  ScoreTqReqSurrenderMrsp_Context *ctx
)
{
  SetSelfScheduler( SCHEDULER_A_ID, PRIO_NORMAL );
}

static void ScoreTqReqSurrenderMrsp_Teardown_Wrap( void *arg )
{
  ScoreTqReqSurrenderMrsp_Context *ctx;

  ctx = arg;
  ctx->Map.in_action_loop = false;
  ScoreTqReqSurrenderMrsp_Teardown( ctx );
}

static void ScoreTqReqSurrenderMrsp_Prepare(
  ScoreTqReqSurrenderMrsp_Context *ctx
)
{
  ctx->inherited_priorities_are_dispensible = true;
  ctx->helping_schedules_are_dispensible = true;
  ctx->use_helping_scheduler = false;
  ctx->gains_new_helping_scheduler = false;
  ctx->intend_to_block = false;
}

static void ScoreTqReqSurrenderMrsp_Action(
  ScoreTqReqSurrenderMrsp_Context *ctx
)
{
  ctx->previous_owner = ctx->tq_ctx->worker_id[ TQ_HELPER_A ];

  SetSelfPriority( PRIO_LOW );

  if (
    ctx->inherited_priorities_are_dispensible ||
    ctx->helping_schedules_are_dispensible
  ) {
    TQSend( ctx->tq_ctx, TQ_HELPER_A, TQ_EVENT_MUTEX_A_OBTAIN );

    if ( ctx->inherited_priorities_are_dispensible ) {
      TQSend( ctx->tq_ctx, TQ_BLOCKER_B, TQ_EVENT_MUTEX_A_OBTAIN );
    }

    if ( ctx->helping_schedules_are_dispensible ) {
      TQSendAndWaitForExecutionStop(
        ctx->tq_ctx,
        TQ_BLOCKER_C,
        TQ_EVENT_MUTEX_A_OBTAIN
      );
    }
  }

  /*
   * Take only the priorities into account which are inherited from the
   * priority inheritance mutex.  This avoids having to deal with the ceiling
   * priority.
   */
  ctx->priority_before = TQGetPriority( ctx->tq_ctx, TQ_HELPER_A );

  SetSelfScheduler( SCHEDULER_B_ID, PRIO_ULTRA_HIGH );
  ctx->tq_ctx->busy_wait[ TQ_HELPER_A ] = true;
  TQSendAndSynchronizeRunner(
    ctx->tq_ctx,
    TQ_HELPER_A,
    TQ_EVENT_ENQUEUE | TQ_EVENT_BUSY_WAIT
  );
  SetSelfScheduler( SCHEDULER_A_ID, PRIO_ULTRA_HIGH );

  TQSendAndWaitForIntendToBlock(
    ctx->tq_ctx,
    TQ_BLOCKER_A,
    TQ_EVENT_ENQUEUE
  );

  SetSelfScheduler( SCHEDULER_B_ID, PRIO_ULTRA_HIGH );

  if ( ctx->gains_new_helping_scheduler ) {
    TQSend(
      ctx->tq_ctx,
      TQ_BLOCKER_D,
      TQ_EVENT_ENQUEUE
    );
    YieldTask( ctx->tq_ctx->worker_id[ TQ_HELPER_A ] );
    TQWaitForEventsReceived( ctx->tq_ctx, TQ_BLOCKER_D );
    TQWaitForIntendToBlock( ctx->tq_ctx, TQ_BLOCKER_D );
    YieldTask( ctx->tq_ctx->worker_id[ TQ_BLOCKER_D ] );
  }

  if ( ctx->use_helping_scheduler ) {
    SetSelfScheduler( SCHEDULER_A_ID, PRIO_ULTRA_HIGH );
    WaitForHeir( 1, ctx->tq_ctx->worker_id[ TQ_HELPER_A ] );
  }

  if ( ctx->suspended ) {
    SuspendTask( ctx->tq_ctx->worker_id[ TQ_BLOCKER_A ] );
  }

  ctx->tq_ctx->busy_wait[ TQ_HELPER_A ] = false;
  TQSendAndWaitForExecutionStop(
    ctx->tq_ctx,
    TQ_HELPER_A,
    TQ_EVENT_SCHEDULER_RECORD_START |
      TQ_EVENT_SURRENDER
  );
  TQSchedulerRecordStop( ctx->tq_ctx );
  T_eq_ptr(
    TQGetOwner( ctx->tq_ctx ),
    ctx->tq_ctx->worker_tcb[ TQ_BLOCKER_A ]
  );
  ctx->priority_after = TQGetPriority( ctx->tq_ctx, TQ_HELPER_A );
}

static void ScoreTqReqSurrenderMrsp_Cleanup(
  ScoreTqReqSurrenderMrsp_Context *ctx
)
{
  SetSelfScheduler( SCHEDULER_A_ID, PRIO_ULTRA_HIGH );

  if ( ctx->suspended ) {
    ResumeTask( ctx->tq_ctx->worker_id[ TQ_BLOCKER_A ] );
  }

  TQSendAndSynchronizeRunner(
    ctx->tq_ctx,
    TQ_BLOCKER_A,
    TQ_EVENT_SURRENDER
  );

  if ( ctx->gains_new_helping_scheduler ) {
    TQSendAndSynchronizeRunner(
      ctx->tq_ctx,
      TQ_BLOCKER_D,
      TQ_EVENT_SURRENDER
    );
  }

  if (
    ctx->inherited_priorities_are_dispensible ||
    ctx->helping_schedules_are_dispensible
  ) {
    TQSendAndSynchronizeRunner(
      ctx->tq_ctx,
      TQ_HELPER_A,
      TQ_EVENT_MUTEX_A_RELEASE
    );

    if ( ctx->inherited_priorities_are_dispensible ) {
      TQSendAndSynchronizeRunner(
        ctx->tq_ctx,
        TQ_BLOCKER_B,
        TQ_EVENT_MUTEX_A_RELEASE
      );
    }

    if ( ctx->helping_schedules_are_dispensible ) {
      TQSendAndSynchronizeRunner(
        ctx->tq_ctx,
        TQ_BLOCKER_C,
        TQ_EVENT_MUTEX_A_RELEASE
      );
    }
  }

  T_eq_u32( rtems_scheduler_get_processor(), 0 );
}

static const ScoreTqReqSurrenderMrsp_Entry
ScoreTqReqSurrenderMrsp_Entries[] = {
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Drop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_Suspended_Yes },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Drop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_Suspended_No },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Drop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_No,
    ScoreTqReqSurrenderMrsp_Post_Suspended_Yes },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Drop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_No,
    ScoreTqReqSurrenderMrsp_Post_Suspended_No },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Drop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_No,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_Suspended_Yes },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Drop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_No,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_Suspended_No },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Drop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_No,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_No,
    ScoreTqReqSurrenderMrsp_Post_Suspended_Yes },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Drop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_No,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_No,
    ScoreTqReqSurrenderMrsp_Post_Suspended_No },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Nop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_Suspended_Yes },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Nop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_Suspended_No },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Nop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_No,
    ScoreTqReqSurrenderMrsp_Post_Suspended_Yes },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Nop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_No,
    ScoreTqReqSurrenderMrsp_Post_Suspended_No },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Nop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_No,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_Suspended_Yes },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Nop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_No,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_Yes,
    ScoreTqReqSurrenderMrsp_Post_Suspended_No },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Nop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_No,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_No,
    ScoreTqReqSurrenderMrsp_Post_Suspended_Yes },
  { 0, 0, 0, 0, 0, 0, 0, ScoreTqReqSurrenderMrsp_Post_Dequeue_Priority,
    ScoreTqReqSurrenderMrsp_Post_Unblock_No,
    ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Nop,
    ScoreTqReqSurrenderMrsp_Post_RemoveHelper_No,
    ScoreTqReqSurrenderMrsp_Post_AddHelper_No,
    ScoreTqReqSurrenderMrsp_Post_Suspended_No }
};

static const uint8_t
ScoreTqReqSurrenderMrsp_Map[] = {
  0, 1, 2, 3, 0, 1, 2, 3, 4, 5, 6, 7, 4, 5, 6, 7, 8, 9, 10, 11, 8, 9, 10, 11,
  12, 13, 14, 15, 12, 13, 14, 15
};

static size_t ScoreTqReqSurrenderMrsp_Scope( void *arg, char *buf, size_t n )
{
  ScoreTqReqSurrenderMrsp_Context *ctx;

  ctx = arg;

  if ( ctx->Map.in_action_loop ) {
    return T_get_scope(
      ScoreTqReqSurrenderMrsp_PreDesc,
      buf,
      n,
      ctx->Map.pcs
    );
  }

  return 0;
}

static T_fixture ScoreTqReqSurrenderMrsp_Fixture = {
  .setup = ScoreTqReqSurrenderMrsp_Setup_Wrap,
  .stop = NULL,
  .teardown = ScoreTqReqSurrenderMrsp_Teardown_Wrap,
  .scope = ScoreTqReqSurrenderMrsp_Scope,
  .initial_context = &ScoreTqReqSurrenderMrsp_Instance
};

static inline ScoreTqReqSurrenderMrsp_Entry ScoreTqReqSurrenderMrsp_PopEntry(
  ScoreTqReqSurrenderMrsp_Context *ctx
)
{
  size_t index;

  index = ctx->Map.index;
  ctx->Map.index = index + 1;
  return ScoreTqReqSurrenderMrsp_Entries[
    ScoreTqReqSurrenderMrsp_Map[ index ]
  ];
}

static void ScoreTqReqSurrenderMrsp_TestVariant(
  ScoreTqReqSurrenderMrsp_Context *ctx
)
{
  ScoreTqReqSurrenderMrsp_Pre_InheritedPriority_Prepare(
    ctx,
    ctx->Map.pcs[ 0 ]
  );
  ScoreTqReqSurrenderMrsp_Pre_PreviousHelping_Prepare(
    ctx,
    ctx->Map.pcs[ 1 ]
  );
  ScoreTqReqSurrenderMrsp_Pre_Scheduler_Prepare( ctx, ctx->Map.pcs[ 2 ] );
  ScoreTqReqSurrenderMrsp_Pre_NewHelping_Prepare( ctx, ctx->Map.pcs[ 3 ] );
  ScoreTqReqSurrenderMrsp_Pre_Suspended_Prepare( ctx, ctx->Map.pcs[ 4 ] );
  ScoreTqReqSurrenderMrsp_Pre_WaitState_Prepare( ctx, ctx->Map.pcs[ 5 ] );
  ScoreTqReqSurrenderMrsp_Action( ctx );
  ScoreTqReqSurrenderMrsp_Post_Dequeue_Check(
    ctx,
    ctx->Map.entry.Post_Dequeue
  );
  ScoreTqReqSurrenderMrsp_Post_Unblock_Check(
    ctx,
    ctx->Map.entry.Post_Unblock
  );
  ScoreTqReqSurrenderMrsp_Post_PreviousOwnerPriority_Check(
    ctx,
    ctx->Map.entry.Post_PreviousOwnerPriority
  );
  ScoreTqReqSurrenderMrsp_Post_RemoveHelper_Check(
    ctx,
    ctx->Map.entry.Post_RemoveHelper
  );
  ScoreTqReqSurrenderMrsp_Post_AddHelper_Check(
    ctx,
    ctx->Map.entry.Post_AddHelper
  );
  ScoreTqReqSurrenderMrsp_Post_Suspended_Check(
    ctx,
    ctx->Map.entry.Post_Suspended
  );
}

static T_fixture_node ScoreTqReqSurrenderMrsp_Node;

static T_remark ScoreTqReqSurrenderMrsp_Remark = {
  .next = NULL,
  .remark = "ScoreTqReqSurrenderMrsp"
};

void ScoreTqReqSurrenderMrsp_Run( TQContext *tq_ctx )
{
  ScoreTqReqSurrenderMrsp_Context *ctx;

  ctx = &ScoreTqReqSurrenderMrsp_Instance;
  ctx->tq_ctx = tq_ctx;

  ctx = T_push_fixture(
    &ScoreTqReqSurrenderMrsp_Node,
    &ScoreTqReqSurrenderMrsp_Fixture
  );
  ctx->Map.in_action_loop = true;
  ctx->Map.index = 0;

  for (
    ctx->Map.pcs[ 0 ] = ScoreTqReqSurrenderMrsp_Pre_InheritedPriority_Vital;
    ctx->Map.pcs[ 0 ] < ScoreTqReqSurrenderMrsp_Pre_InheritedPriority_NA;
    ++ctx->Map.pcs[ 0 ]
  ) {
    for (
      ctx->Map.pcs[ 1 ] = ScoreTqReqSurrenderMrsp_Pre_PreviousHelping_Vital;
      ctx->Map.pcs[ 1 ] < ScoreTqReqSurrenderMrsp_Pre_PreviousHelping_NA;
      ++ctx->Map.pcs[ 1 ]
    ) {
      for (
        ctx->Map.pcs[ 2 ] = ScoreTqReqSurrenderMrsp_Pre_Scheduler_Home;
        ctx->Map.pcs[ 2 ] < ScoreTqReqSurrenderMrsp_Pre_Scheduler_NA;
        ++ctx->Map.pcs[ 2 ]
      ) {
        for (
          ctx->Map.pcs[ 3 ] = ScoreTqReqSurrenderMrsp_Pre_NewHelping_Vital;
          ctx->Map.pcs[ 3 ] < ScoreTqReqSurrenderMrsp_Pre_NewHelping_NA;
          ++ctx->Map.pcs[ 3 ]
        ) {
          for (
            ctx->Map.pcs[ 4 ] = ScoreTqReqSurrenderMrsp_Pre_Suspended_Yes;
            ctx->Map.pcs[ 4 ] < ScoreTqReqSurrenderMrsp_Pre_Suspended_NA;
            ++ctx->Map.pcs[ 4 ]
          ) {
            for (
              ctx->Map.pcs[ 5 ] = ScoreTqReqSurrenderMrsp_Pre_WaitState_IntendToBlock;
              ctx->Map.pcs[ 5 ] < ScoreTqReqSurrenderMrsp_Pre_WaitState_NA;
              ++ctx->Map.pcs[ 5 ]
            ) {
              ctx->Map.entry = ScoreTqReqSurrenderMrsp_PopEntry( ctx );
              ScoreTqReqSurrenderMrsp_Prepare( ctx );
              ScoreTqReqSurrenderMrsp_TestVariant( ctx );
              ScoreTqReqSurrenderMrsp_Cleanup( ctx );
            }
          }
        }
      }
    }
  }

  T_add_remark( &ScoreTqReqSurrenderMrsp_Remark );
  T_pop_fixture();
}

/** @} */