-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_v1model_p4c.expected
1162 lines (968 loc) · 78.6 KB
/
run_v1model_p4c.expected
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
Cannot find file for ../../../testdata/p4c/stf/v1model/extern-funcs-bmv2.stf in ../../../testdata/p4c/program/well-typed
Cannot find file for ../../../testdata/p4c/stf/v1model/gauntlet_hdr_in_value-bmv2.stf in ../../../testdata/p4c/program/well-typed
Cannot find file for ../../../testdata/p4c/stf/v1model/gauntlet_optional-bmv2.stf in ../../../testdata/p4c/program/well-typed
Cannot find file for ../../../testdata/p4c/stf/v1model/gauntlet_various_ops-bmv2.stf in ../../../testdata/p4c/program/well-typed
Cannot find file for ../../../testdata/p4c/stf/v1model/issue1097-2-bmv2.stf in ../../../testdata/p4c/program/well-typed
Cannot find file for ../../../testdata/p4c/stf/v1model/issue1814-1-bmv2.stf in ../../../testdata/p4c/program/well-typed
Cannot find file for ../../../testdata/p4c/stf/v1model/issue1879-bmv2.stf in ../../../testdata/p4c/program/well-typed
Cannot find file for ../../../testdata/p4c/stf/v1model/issue2287-bmv2.stf in ../../../testdata/p4c/program/well-typed
Cannot find file for ../../../testdata/p4c/stf/v1model/issue2488-bmv2.stf in ../../../testdata/p4c/program/well-typed
Cannot find file for ../../../testdata/p4c/stf/v1model/v1model-special-ops-bmv2.stf in ../../../testdata/p4c/program/well-typed
Running run tests on 192 files
>>> Running run test on ../../../testdata/p4c/program/well-typed/arith-bmv2.p4 with ../../../testdata/p4c/stf/v1model/arith-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000000000 / Got: 0 00000000000000000000000000000000
[PASS] Expected: 0 00000001000000000000000000000001 / Got: 0 00000001000000000000000000000001
[PASS] Expected: 0 00000001000000010000000000000002 / Got: 0 00000001000000010000000000000002
[PASS] Expected: 0 00000011000000220000000000000033 / Got: 0 00000011000000220000000000000033
[PASS] Expected: 0 FFFFFFFF000000010000000000000000 / Got: 0 FFFFFFFF000000010000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/arith-inline-bmv2.p4 with ../../../testdata/p4c/stf/v1model/arith-inline-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000000000 / Got: 0 00000000000000000000000000000000
[PASS] Expected: 0 00000001000000000000000000000001 / Got: 0 00000001000000000000000000000001
[PASS] Expected: 0 00000001000000010000000000000002 / Got: 0 00000001000000010000000000000002
[PASS] Expected: 0 00000011000000220000000000000033 / Got: 0 00000011000000220000000000000033
[PASS] Expected: 0 FFFFFFFF000000010000000000000000 / Got: 0 FFFFFFFF000000010000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/arith1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/arith1-bmv2.stf
[PASS] Expected: 0 000000000000000000 / Got: 0 000000000000000000
[PASS] Expected: 0 000000010000000000 / Got: 0 000000010000000000
[PASS] Expected: 0 000000010000000201 / Got: 0 000000010000000201
[PASS] Expected: 0 000000110000002201 / Got: 0 000000110000002201
[PASS] Expected: 0 FFFFFFFF0000000101 / Got: 0 FFFFFFFF0000000101
[PASS] Expected: 0 FFFFFFFFFFFFFFFE00 / Got: 0 FFFFFFFFFFFFFFFE00
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/arith2-bmv2.p4 with ../../../testdata/p4c/stf/v1model/arith2-bmv2.stf
[PASS] Expected: 0 000000000000000101 / Got: 0 000000000000000101
[PASS] Expected: 0 000000000000000000 / Got: 0 000000000000000000
[PASS] Expected: 0 000000010000000000 / Got: 0 000000010000000000
[PASS] Expected: 0 000000010000000201 / Got: 0 000000010000000201
[PASS] Expected: 0 000000110000002201 / Got: 0 000000110000002201
[PASS] Expected: 0 FFFFFFFF0000000100 / Got: 0 FFFFFFFF0000000100
[PASS] Expected: 0 FFFFFFFFFFFFFFFE00 / Got: 0 FFFFFFFFFFFFFFFE00
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/arith2-inline-bmv2.p4 with ../../../testdata/p4c/stf/v1model/arith2-inline-bmv2.stf
[PASS] Expected: 0 000000000000000001 / Got: 0 000000000000000001
[PASS] Expected: 0 000000010000000001 / Got: 0 000000010000000001
[PASS] Expected: 0 000000000000000100 / Got: 0 000000000000000100
[PASS] Expected: 0 000000010000000101 / Got: 0 000000010000000101
[PASS] Expected: 0 000000110000002200 / Got: 0 000000110000002200
[PASS] Expected: 0 FFFFFFFF0000000101 / Got: 0 FFFFFFFF0000000101
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/arith3-bmv2.p4 with ../../../testdata/p4c/stf/v1model/arith3-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000 / Got: 0 00000000000000000000000000
[PASS] Expected: 0 00000001000000000000000001 / Got: 0 00000001000000000000000001
[PASS] Expected: 0 00000001020000000000000004 / Got: 0 00000001020000000000000004
[PASS] Expected: 0 00000011100000000000110000 / Got: 0 00000011100000000000110000
[PASS] Expected: 0 00000011140000000001100000 / Got: 0 00000011140000000001100000
[PASS] Expected: 0 000000111C0000000010000000 / Got: 0 000000111C0000000010000000
[PASS] Expected: 0 FFFFFFFF0100000000FFFFFFFE / Got: 0 FFFFFFFF0100000000FFFFFFFE
[PASS] Expected: 0 FFFFFFFFFF0000000000000000 / Got: 0 FFFFFFFFFF0000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/arith4-bmv2.p4 with ../../../testdata/p4c/stf/v1model/arith4-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000 / Got: 0 00000000000000000000000000
[PASS] Expected: 0 00000001000000000000000001 / Got: 0 00000001000000000000000001
[PASS] Expected: 0 00000001020000000000000000 / Got: 0 00000001020000000000000000
[PASS] Expected: 0 00000011010000000000000008 / Got: 0 00000011010000000000000008
[PASS] Expected: 0 00000011040000000000000001 / Got: 0 00000011040000000000000001
[PASS] Expected: 0 11111111100000000000001111 / Got: 0 11111111100000000000001111
[PASS] Expected: 0 FFFFFFFF01000000007FFFFFFF / Got: 0 FFFFFFFF01000000007FFFFFFF
[PASS] Expected: 0 FFFFFFFFFF0000000000000000 / Got: 0 FFFFFFFFFF0000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/arith5-bmv2.p4 with ../../../testdata/p4c/stf/v1model/arith5-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000 / Got: 0 00000000000000000000000000
[PASS] Expected: 0 00000001000000000000000001 / Got: 0 00000001000000000000000001
[PASS] Expected: 0 00000001020000000000000000 / Got: 0 00000001020000000000000000
[PASS] Expected: 0 00000011010000000000000008 / Got: 0 00000011010000000000000008
[PASS] Expected: 0 00000011040000000000000001 / Got: 0 00000011040000000000000001
[PASS] Expected: 0 11111111100000000000001111 / Got: 0 11111111100000000000001111
[PASS] Expected: 0 FFFFFFFF01FFFFFFFFFFFFFFFF / Got: 0 FFFFFFFF01FFFFFFFFFFFFFFFF
[PASS] Expected: 0 FFFFFFFFFFFFFFFFFFFFFFFFFF / Got: 0 FFFFFFFFFFFFFFFFFFFFFFFFFF
[PASS] Expected: 0 8FFFFFFF01FFFFFFFFC7FFFFFF / Got: 0 8FFFFFFF01FFFFFFFFC7FFFFFF
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/array-copy-bmv2.p4 with ../../../testdata/p4c/stf/v1model/array-copy-bmv2.stf
[PASS] Expected: 0 12121212 / Got: 0 12121212
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/bvec-hdr-bmv2.p4 with ../../../testdata/p4c/stf/v1model/bvec-hdr-bmv2.stf
[PASS] Expected: 1 01********** / Got: 1 0111110000B0
[PASS] Expected: 2 02********** / Got: 2 0211810000B0
[PASS] Expected: 0 03********** / Got: 0 0310000000B0
[PASS] Expected: 0 04********** / Got: 0 0411110000B0
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/checksum-l4-bmv2.p4 with ../../../testdata/p4c/stf/v1model/checksum-l4-bmv2.stf
[PASS] Expected: 0 525400123502080027018BBC080045000038000100003F0665AB0A00020F0A01000516A2005000000000000000005002200047A1000064656164626565666465616462656566 / Got: 0 525400123502080027018BBC080045000038000100003F0665AB0A00020F0A01000516A2005000000000000000005002200047A1000064656164626565666465616462656566
[PASS] Expected: 0 525400123502080027018BBC08004600003C000100003F061847C0A801BF0A02030883031000157E00500000000000000000500220008F68000064656164626565666465616462656566 / Got: 0 525400123502080027018BBC08004600003C000100003F061847C0A801BF0A02030883031000157E00500000000000000000500220008F68000064656164626565666465616462656566
[PASS] Expected: 0 CA0107FC001C11111111111108004500002C000100003F1167B60A0100040A01000516A200500018B99664656164626565666465616462656566 / Got: 0 CA0107FC001C11111111111108004500002C000100003F1167B60A0100040A01000516A200500018B99664656164626565666465616462656566
[PASS] Expected: 0 525400123502080027018BBC080046000044000100003F06183FC0A801BF0A02030883031000157E00500000000000000000700220006AE000000204027C0000000064656164626565666465616462656566 / Got: 0 525400123502080027018BBC080046000044000100003F06183FC0A801BF0A02030883031000157E00500000000000000000700220006AE000000204027C0000000064656164626565666465616462656566
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/checksum1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/checksum1-bmv2.stf
[PASS] Expected: 0 525400123502080027018BBC080045000028000100003F0665BB0A00020F0A01000516A2005000000000000000005002200062E10000 / Got: 0 525400123502080027018BBC080045000028000100003F0665BB0A00020F0A01000516A2005000000000000000005002200062E10000
[PASS] Expected: 0 525400123502080027018BBC08004600002C000100003F06CEAF0A00020F0A02030883031000157E005000000000000000005002200061010000 / Got: 0 525400123502080027018BBC08004600002C000100003F06CEAF0A00020F0A02030883031000157E005000000000000000005002200061010000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/checksum2-bmv2.p4 with ../../../testdata/p4c/stf/v1model/checksum2-bmv2.stf
[PASS] Expected: 0 66778899AABB00112233445508004500001B000100003F0064D20A00020F0A0100017061796C6F6164 / Got: 0 66778899AABB00112233445508004500001B000100003F0064D20A00020F0A0100017061796C6F6164
[PASS] Expected: 0 000000000BAD00112233445508003500001B000100003F0074D20A00020F0A0100017061796C6F6164 / Got: 0 000000000BAD00112233445508003500001B000100003F0074D20A00020F0A0100017061796C6F6164
[PASS] Expected: 0 66778899AABB000000000BAD08004500001B000100003F0064D30A00020F0A0100017061796C6F6164 / Got: 0 66778899AABB000000000BAD08004500001B000100003F0064D30A00020F0A0100017061796C6F6164
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/checksum3-bmv2.p4 with ../../../testdata/p4c/stf/v1model/checksum3-bmv2.stf
[PASS] Expected: 0 66778899AABB00112233445508004500001B000100003F0065D20A00020F0A0100017061796C6F6164 / Got: 0 66778899AABB00112233445508004500001B000100003F0065D20A00020F0A0100017061796C6F6164
[PASS] Expected: 0 000000000BAD00112233445508003500001B000100003F0075D20A00020F0A0100017061796C6F6164 / Got: 0 000000000BAD00112233445508003500001B000100003F0075D20A00020F0A0100017061796C6F6164
[PASS] Expected: 0 66778899AABB00112233445508004500001B000100003F0065D20A00020F0A0100017061796C6F6164 / Got: 0 66778899AABB00112233445508004500001B000100003F0065D20A00020F0A0100017061796C6F6164
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/constant-in-calculation-bmv2.p4 with ../../../testdata/p4c/stf/v1model/constant-in-calculation-bmv2.stf
[PASS] Expected: 0 0001 / Got: 0 0001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/default-action-arg-bmv2.p4 with ../../../testdata/p4c/stf/v1model/default-action-arg-bmv2.stf
[PASS] Expected: 0 00000000000AABCDEF01 / Got: 0 00000000000AABCDEF01
[PASS] Expected: 0 00000000000B00000000 / Got: 0 00000000000B00000000
[PASS] Expected: 0 00000000000B00000000 / Got: 0 00000000000B00000000
[PASS] Expected: 0 00000000001B00000000 / Got: 0 00000000001B00000000
[PASS] Expected: 0 00000000000900000000 / Got: 0 00000000000900000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/default_action-bmv2.p4 with ../../../testdata/p4c/stf/v1model/default_action-bmv2.stf
[PASS] Expected: 0 000000000000000A / Got: 0 000000000000000A
[PASS] Expected: 0 000000010000000B / Got: 0 000000010000000B
[PASS] Expected: 0 000000010000000B / Got: 0 000000010000000B
[PASS] Expected: 0 000000110000001B / Got: 0 000000110000001B
[PASS] Expected: 0 FFFFFFFF00000009 / Got: 0 FFFFFFFF00000009
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/enum-bmv2.p4 with ../../../testdata/p4c/stf/v1model/enum-bmv2.stf
[PASS] Expected: 0 000000000000000000000000 / Got: 0 000000000000000000000000
[PASS] Expected: 0 000000010000000000000000 / Got: 0 000000010000000000000000
[PASS] Expected: 0 000000010000000100000001 / Got: 0 000000010000000100000001
[PASS] Expected: 0 000000110000002200000022 / Got: 0 000000110000002200000022
[PASS] Expected: 0 FFFFFFFF0000000100000001 / Got: 0 FFFFFFFF0000000100000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/equality-bmv2.p4 with ../../../testdata/p4c/stf/v1model/equality-bmv2.stf
[PASS] Expected: 0 0123456789ABCDEFFEDCBA9876543200 / Got: 0 0123456789ABCDEFFEDCBA9876543200
[PASS] Expected: 0 0123456789012345678901234567890F / Got: 0 0123456789012345678901234567890F
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/equality-varbit-bmv2.p4 with ../../../testdata/p4c/stf/v1model/equality-varbit-bmv2.stf
[PASS] Expected: 1 0123456789 / Got: 1 0123456789
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/flag_lost-bmv2.p4 with ../../../testdata/p4c/stf/v1model/flag_lost-bmv2.stf
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_action_mux-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_action_mux-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000000100 / Got: 0 00000000000000000000000000000100
[PASS] Expected: 0 00000000000000000000000000000404 / Got: 0 00000000000000000000000000000404
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_action_return-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_action_return-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000001B / Got: 0 00000000000000000000000000001B
[PASS] Expected: 0 000000000000000000000000000013 / Got: 0 000000000000000000000000000013
[PASS] Expected: 0 00000000000000000000000000000B / Got: 0 00000000000000000000000000000B
[PASS] Expected: 0 000000000000000000000000000003 / Got: 0 000000000000000000000000000003
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_arithref_cast-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_arithref_cast-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 0000000000000000000000100001 / Got: 0 0000000000000000000000100001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_complex_initialization-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_complex_initialization-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_copy_out-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_copy_out-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000000C00 / Got: 0 00000000000000000000000000000C00
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_enum_assign-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_enum_assign-bmv2.stf
[FAIL] Remaining packets to be matched:
(0) 2 00
Error on stf test
>>>>> Rerunning run test on ../../../testdata/p4c/program/well-typed/gauntlet_enum_assign-bmv2.p4 with ../../../testdata/p4c/stf/v1model-patch/gauntlet_enum_assign-bmv2.stf
[PASS] Expected: 2 00 / Got: 2 00
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_after_valid-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_after_valid-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000000000000000 / Got: 0 0000000000000000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_1-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_10-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_10-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_11-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_11-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_13-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_13-bmv2.stf
[PASS] Expected: 0 0000000000020000000000000000 / Got: 0 0000000000020000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_14-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_14-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_15-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_15-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000002 / Got: 0 0000000000000000000000000002
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_16-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_16-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_17-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_17-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_18-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_18-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_19-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_19-bmv2.stf
[PASS] Expected: 0 0000000000000000000000010003 / Got: 0 0000000000000000000000010003
[PASS] Expected: 0 0000000000000000000000010002 / Got: 0 0000000000000000000000010002
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_2-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_2-bmv2.stf
[PASS] Expected: 0 0000000000050000000000000000 / Got: 0 0000000000050000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_20-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_20-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000002 / Got: 0 0000000000000000000000000002
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_21-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_21-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000003 / Got: 0 0000000000000000000000000003
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_22-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_22-bmv2.stf
[PASS] Expected: 0 0000000000000000000000010003 / Got: 0 0000000000000000000000010003
[PASS] Expected: 0 0000000000000000000000010002 / Got: 0 0000000000000000000000010002
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_23-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_23-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000001 / Got: 0 0000000000000000000000000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_3-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_3-bmv2.stf
[PASS] Expected: 0 0000000000020000000000000001 / Got: 0 0000000000020000000000000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_4-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_4-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_5-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_5-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_6-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_6-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000001 / Got: 0 0000000000000000000000000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_7-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_7-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_8-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_8-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_exit_combination_9-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_exit_combination_9-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000002 / Got: 0 0000000000000000000000000002
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_function_if_hdr_return-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_function_if_hdr_return-bmv2.stf
[PASS] Expected: 0 0000000000010000000000010001 / Got: 0 0000000000010000000000010001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_function_return-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_function_return-bmv2.stf
[PASS] Expected: 0 00 / Got: 0 00
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_function_return_cast-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_function_return_cast-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000FF / Got: 0 00000000000000000000000000FF
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_hdr_assign_1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_hdr_assign_1-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000002000000 / Got: 0 0000000000000000000000000002000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_hdr_assign_2-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_hdr_assign_2-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000**02 / Got: 0 00000000000000000000000000000102
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_hdr_function_cast-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_hdr_function_cast-bmv2.stf
[PASS] Expected: 0 00000000000300000000000300030000000000010000000000010001 / Got: 0 00000000000300000000000300030000000000010000000000010001
[PASS] Expected: 0 00000000000100000000000100010000000000010000000000010001 / Got: 0 00000000000100000000000100010000000000010000000000010001
[PASS] Expected: 0 00000000000200000000000200020000000000010000000000010001 / Got: 0 00000000000200000000000200020000000000010000000000010001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_hdr_init-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_hdr_init-bmv2.stf
[PASS] Expected: 0 00000000000100000000000100010000000000010000000000010001 / Got: 0 00000000000100000000000100010000000000010000000000010001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_hdr_int_initializer-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_hdr_int_initializer-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_hdr_out_in_action-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_hdr_out_in_action-bmv2.stf
[PASS] Expected: 0 00 / Got: 0 00
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_hdr_set_valid-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_hdr_set_valid-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000000100000000000000010001 / Got: 0 0000000000000000000000000000000100000000000000010001
[PASS] Expected: 0 0000000000000000000000000000000000000000000000010001 / Got: 0 0000000000000000000000000000000000000000000000010001
[PASS] Expected: 0 0000000000000000000000000000800000000000000000010000 / Got: 0 0000000000000000000000000000800000000000000000010000
[PASS] Expected: 0 0000000000000000000000000000000000000000000000010000 / Got: 0 0000000000000000000000000000000000000000000000010000
[PASS] Expected: 0 0000000000000000000000000000800000000000000000000004 / Got: 0 0000000000000000000000000000800000000000000000000004
[PASS] Expected: 0 0000000000000000000000000000000000000000000000000004 / Got: 0 0000000000000000000000000000000000000000000000000004
[PASS] Expected: 0 0000000000000000000000000000800000000000000000000000 / Got: 0 0000000000000000000000000000800000000000000000000000
[PASS] Expected: 0 0000000000000000000000000000000000000000000000000002 / Got: 0 0000000000000000000000000000000000000000000000000002
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_index_1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_index_1-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000400000000000000001 / Got: 0 0000000000000000000000000000400000000000000001
[PASS] Expected: 0 0000000000000000000000000000200000000000000001 / Got: 0 0000000000000000000000000000200000000000000001
[PASS] Expected: 0 0000000000000000000000000000000000000100000001 / Got: 0 0000000000000000000000000000000000000100000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_index_2-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_index_2-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000000000 / Got: 0 00000000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_index_4-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_index_4-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000000000000200000000 / Got: 0 00000000000000000000000000000000000200000000
[PASS] Expected: 0 00000000000000000000000000010000000100000000 / Got: 0 00000000000000000000000000010000000100000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_index_5-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_index_5-bmv2.stf
[PASS] Expected: 0 00000000000200000000000000000000000000000000 / Got: 0 00000000000200000000000000000000000000000000
[PASS] Expected: 0 00000000000000000000000000000000000000000000 / Got: 0 00000000000000000000000000000000000000000000
[PASS] Expected: 0 00000000000100000000000000000000000000000000 / Got: 0 00000000000100000000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_index_6-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_index_6-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000000000 / Got: 0 0000000000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_index_7-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_index_7-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000000100 / Got: 0 0000000000000000000000000000000100
[PASS] Expected: 0 0000000000000000000000000000010100 / Got: 0 0000000000000000000000000000010100
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_index_8-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_index_8-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000001000000 / Got: 0 000000000000000000000000000001000000
[PASS] Expected: 0 000000000000000000000000000001000080 / Got: 0 000000000000000000000000000001000080
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_index_9-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_index_9-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000000100 / Got: 0 00000000000000000000000000000100
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_indirect_hdr_assign_1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_indirect_hdr_assign_1-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_indirect_hdr_assign_2-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_indirect_hdr_assign_2-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_instance_overwrite-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_instance_overwrite-bmv2.stf
[PASS] Expected: 0 000000 / Got: 0 000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_int_casting-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_int_casting-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_int_slice-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_int_slice-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000002 / Got: 0 000000000000000000000000000002
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_invalid_hdr_assign-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_invalid_hdr_assign-bmv2.stf
[PASS] Expected: 0 000000000000000000000000**** / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_invalid_hdr_short_circuit-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_invalid_hdr_short_circuit-bmv2.stf
[FAIL] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000000000
Error on stf test
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_list_as_in_argument-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_list_as_in_argument-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000001 / Got: 0 0000000000000000000000000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_mux_eval-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_mux_eval-bmv2.stf
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_mux_hdr-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_mux_hdr-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000000000000 / Got: 0 000000000000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_mux_typecasting-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_mux_typecasting-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000007 / Got: 0 0000000000000000000000000007
[PASS] Expected: 0 0000000000000000000000010006 / Got: 0 0000000000000000000000010006
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_mux_validity-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_mux_validity-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000100 / Got: 0 000000000000000000000000000100
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_nested_ifs_in_function-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_nested_ifs_in_function-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000001 / Got: 0 000000000000000000000000000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_nested_slice-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_nested_slice-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000000F0000 / Got: 0 00000000000000000000000000000F0000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_nested_switch-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_nested_switch-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_nested_table_calls-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_nested_table_calls-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000002 / Got: 0 0000000000000000000000000002
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_return_truncate-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_return_truncate-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000000000000000000000000000004 / Got: 0 000000000000000000000000000000000000000000000000000004
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_set_invalid-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_set_invalid-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000**02 / Got: 0 00000000000000000000000000000102
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_set_valid_in_function-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_set_valid_in_function-bmv2.stf
[PASS] Expected: 0 00000000000000000000000000000000000000000000000000 / Got: 0 00000000000000000000000000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_short_circuit-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_short_circuit-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000000000000100 / Got: 0 0000000000000000000000000000000000000100
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_side_effect_order_1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_side_effect_order_1-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000**** / Got: 0 00000000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_side_effect_order_2-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_side_effect_order_2-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000003 / Got: 0 000000000000000000000000000003
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_side_effect_order_3-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_side_effect_order_3-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000010000 / Got: 0 0000000000000000000000000000010000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_side_effect_order_4-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_side_effect_order_4-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 0000000000000000000000000003 / Got: 0 0000000000000000000000000003
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_side_effect_order_5-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_side_effect_order_5-bmv2.stf
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 00000000000000000000000C0000 / Got: 0 00000000000000000000000C0000
[PASS] Expected: 0 00000000000000000000000C0000 / Got: 0 00000000000000000000000C0000
[PASS] Expected: 0 0000000000000000000000030000 / Got: 0 0000000000000000000000030000
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 000000000000************0000 / Got: 0 0000000000000000000000000000
[PASS] Expected: 0 00000000000000000000000C0000 / Got: 0 00000000000000000000000C0000
[PASS] Expected: 0 00000000000000000000000C0000 / Got: 0 00000000000000000000000C0000
[PASS] Expected: 0 0000000000000000000000030000 / Got: 0 0000000000000000000000030000
[PASS] Expected: 0 0000000000000000000000030000 / Got: 0 0000000000000000000000030000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_side_effects_in_mux-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_side_effects_in_mux-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000200** / Got: 0 00000000000000000000000000020000
[PASS] Expected: 0 0000000000000000000000050002**01 / Got: 0 00000000000000000000000500020001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_switch_exclusivity-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_switch_exclusivity-bmv2.stf
[PASS] Expected: 0 0000000000000000000000010000 / Got: 0 0000000000000000000000010000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_switch_nested_table_apply-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_switch_nested_table_apply-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_switch_shadowing-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_switch_shadowing-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_table_call_in_expression-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_table_call_in_expression-bmv2.stf
[PASS] Expected: 0 0000000000010000000000000001 / Got: 0 0000000000010000000000000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_typedef_cast-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_typedef_cast-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000000 / Got: 0 000000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_uninitialized_bool_struct-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_uninitialized_bool_struct-bmv2.stf
[PASS] Expected: 0 0000000000000000000000010000 / Got: 0 0000000000000000000000010000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/gauntlet_variable_shadowing-bmv2.p4 with ../../../testdata/p4c/stf/v1model/gauntlet_variable_shadowing-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000000000000000000001 / Got: 0 0000000000000000000000000000000000000000000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/header-bool-bmv2.p4 with ../../../testdata/p4c/stf/v1model/header-bool-bmv2.stf
[PASS] Expected: 0 80666666 / Got: 0 80666666
[PASS] Expected: 0 81666666 / Got: 0 81666666
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/header-stack-ops-bmv2.p4 with ../../../testdata/p4c/stf/v1model/header-stack-ops-bmv2.stf
[PASS] Expected: 0 01000000010202DEAD0303BE / Got: 0 01000000010202DEAD0303BE
[PASS] Expected: 0 01110000020202DEAD0303BE / Got: 0 01110000020202DEAD0303BE
[PASS] Expected: 0 01113000030202A00A0902DEAD0303BE / Got: 0 01113000030202A00A0902DEAD0303BE
[PASS] Expected: 0 01320000050202DEAD0302A22A0903BE / Got: 0 01320000050202DEAD0302A22A0903BE
[PASS] Expected: 0 013211000A0202DEAD0302A22A0903BE / Got: 0 013211000A0202DEAD0302A22A0903BE
[PASS] Expected: 0 01302100000303BE / Got: 0 01302100000303BE
[PASS] Expected: 0 010000001F020212340202567802029ABC0202DEF1020223450303FE / Got: 0 010000001F020212340202567802029ABC0202DEF1020223450303FE
[PASS] Expected: 0 011130001F0202A00A090212340202567802029ABC0202DEF10203FE / Got: 0 011130001F0202A00A090212340202567802029ABC0202DEF10203FE
[PASS] Expected: 0 0114000010020212340203FE / Got: 0 0114000010020212340203FE
[PASS] Expected: 0 01150000000203FE / Got: 0 01150000000203FE
[PASS] Expected: 0 012100000F0202567802029ABC0202DEF1020223450303FE / Got: 0 012100000F0202567802029ABC0202DEF1020223450303FE
[PASS] Expected: 0 0124000001020223450303FE / Got: 0 0124000001020223450303FE
[PASS] Expected: 0 01250000000203FE / Got: 0 01250000000203FE
[PASS] Expected: 0 013311001E0202123402025678020223450302A33A0903FE / Got: 0 013311001E0202123402025678020223450302A33A0903FE
[PASS] Expected: 0 013321000702025678020223450302A33A0903FE / Got: 0 013321000702025678020223450302A33A0903FE
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/invalid-hdr-warnings3-bmv2.p4 with ../../../testdata/p4c/stf/v1model/invalid-hdr-warnings3-bmv2.stf
[PASS] Expected: 0 F802AAFF1F9A05DA00E7797EBB054E157BE295737132E0F4AB8DD8A95CD7A84357C403CCF495285090A841C4070EBD5064DAE5191ADCC8511508FCB332D45FF7B45CA3F9A092090F4BB4E973B43D9F400B56F27ECCD0FAAE45FB66273D7A00DE0E076B579EA897888A6A59AEDD3E99A4D5EE5F6A9CDAFE22D2F3E080CD15FAA8F4E2A5759ED13A879C11D0219EE7AE8B72BE589958056D14E92EA85D1E0F7169F264643694E81A40E4BE127BA9C5C2BD3A3503592A9306A9EFD77C51EDDA0C1ABC3BAE8D242D0EA0DB65AE895C582017690A6BF228037B0E2D365B6F59D998DE80DF5A7DBD5C5D83017B70E55C02A0495EF345BCFB9C420EC0 / Got: 0 F802AAFF1F9A05DA00E7797EBB054E157BE295737132E0F4AB8DD8A95CD7A84357C403CCF495285090A841C4070EBD5064DAE5191ADCC8511508FCB332D45FF7B45CA3F9A092090F4BB4E973B43D9F400B56F27ECCD0FAAE45FB66273D7A00DE0E076B579EA897888A6A59AEDD3E99A4D5EE5F6A9CDAFE22D2F3E080CD15FAA8F4E2A5759ED13A879C11D0219EE7AE8B72BE589958056D14E92EA85D1E0F7169F264643694E81A40E4BE127BA9C5C2BD3A3503592A9306A9EFD77C51EDDA0C1ABC3BAE8D242D0EA0DB65AE895C582017690A6BF228037B0E2D365B6F59D998DE80DF5A7DBD5C5D83017B70E55C02A0495EF345BCFB9C420EC0
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/ipv6-switch-ml-bmv2.p4 with ../../../testdata/p4c/stf/v1model/ipv6-switch-ml-bmv2.stf
Error on stf parser:
parser error
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue-2123-2-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue-2123-2-bmv2.stf
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFFFF07FF00 / Got: 3 E0FFFFFFFFFFFFFFFFFFFFFF07FF00
[PASS] Expected: 3 E1FFFFFFFFFFFFFFFFFFFFFF080000 / Got: 3 E1FFFFFFFFFFFFFFFFFFFFFF080000
[PASS] Expected: 3 E1FFFFFFFFFFFFFFFFFFFFFF080600 / Got: 3 E1FFFFFFFFFFFFFFFFFFFFFF080600
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFFFF080700 / Got: 3 E0FFFFFFFFFFFFFFFFFFFFFF080700
[PASS] Expected: 3 E2FFFFFFFFFFFFFFFFFFFFFF080800 / Got: 3 E2FFFFFFFFFFFFFFFFFFFFFF080800
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFFFF080900 / Got: 3 E0FFFFFFFFFFFFFFFFFFFFFF080900
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFFFFFFF000 / Got: 3 E0FFFFFFFFFFFFFFFFFFFFFFFFF000
[PASS] Expected: 3 E4FFFFFFFFFFFFFFFFFFFFFFFFF100 / Got: 3 E4FFFFFFFFFFFFFFFFFFFFFFFFF100
[PASS] Expected: 3 E4FFFFFFFFFFFFFFFFFFFFFFFFFE00 / Got: 3 E4FFFFFFFFFFFFFFFFFFFFFFFFFE00
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFFFFFFFF00 / Got: 3 E0FFFFFFFFFFFFFFFFFFFFFFFFFF00
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFFFF08FE00 / Got: 3 E0FFFFFFFFFFFFFFFFFFFFFF08FE00
[PASS] Expected: 3 F0FFFFFFFFFFFFFFFFFFFFFF08FF00 / Got: 3 F0FFFFFFFFFFFFFFFFFFFFFF08FF00
[PASS] Expected: 3 E8FFFFFFFFFFFFFFFFFFFFFF090000 / Got: 3 E8FFFFFFFFFFFFFFFFFFFFFF090000
[PASS] Expected: 3 F0FFFFFFFFFFFFFFFFFFFFFF090100 / Got: 3 F0FFFFFFFFFFFFFFFFFFFFFF090100
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFFFF090200 / Got: 3 E0FFFFFFFFFFFFFFFFFFFFFF090200
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue-2123-3-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue-2123-3-bmv2.stf
[PASS] Expected: 3 E1FFFFFFFFFFFFFFFFFFFF61080000 / Got: 3 E1FFFFFFFFFFFFFFFFFFFF61080000
[PASS] Expected: 3 E1FFFFFFFFFFFFFFFFFFFF61080600 / Got: 3 E1FFFFFFFFFFFFFFFFFFFF61080600
[PASS] Expected: 3 E1FFFFFFFFFFFFFFFFFFFF67080000 / Got: 3 E1FFFFFFFFFFFFFFFFFFFF67080000
[PASS] Expected: 3 E1FFFFFFFFFFFFFFFFFFFF67080600 / Got: 3 E1FFFFFFFFFFFFFFFFFFFF67080600
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFF60080000 / Got: 3 E0FFFFFFFFFFFFFFFFFFFF60080000
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFF60080600 / Got: 3 E0FFFFFFFFFFFFFFFFFFFF60080600
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFF68080000 / Got: 3 E0FFFFFFFFFFFFFFFFFFFF68080000
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFF68080600 / Got: 3 E0FFFFFFFFFFFFFFFFFFFF68080600
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFF6107FF00 / Got: 3 E0FFFFFFFFFFFFFFFFFFFF6107FF00
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFF6707FF00 / Got: 3 E0FFFFFFFFFFFFFFFFFFFF6707FF00
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFF61080700 / Got: 3 E0FFFFFFFFFFFFFFFFFFFF61080700
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFF67080700 / Got: 3 E0FFFFFFFFFFFFFFFFFFFF67080700
[PASS] Expected: 3 E2FFFFFFFFFFFFFFFFFFFF61090100 / Got: 3 E2FFFFFFFFFFFFFFFFFFFF61090100
[PASS] Expected: 3 E2FFFFFFFFFFFFFFFFFFFF67090200 / Got: 3 E2FFFFFFFFFFFFFFFFFFFF67090200
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFF61090000 / Got: 3 E0FFFFFFFFFFFFFFFFFFFF61090000
[PASS] Expected: 3 E0FFFFFFFFFFFFFFFFFFFF67090300 / Got: 3 E0FFFFFFFFFFFFFFFFFFFF67090300
[PASS] Expected: 3 E4FFFFFFFFFFFFFFFFFFFF7B080400 / Got: 3 E4FFFFFFFFFFFFFFFFFFFF7B080400
[PASS] Expected: 3 E4FFFFFFFFFFFFFFFFFFFF77080300 / Got: 3 E4FFFFFFFFFFFFFFFFFFFF77080300
[PASS] Expected: 3 E8FFFFFFFFFFFFFFFFFFFF790A2300 / Got: 3 E8FFFFFFFFFFFFFFFFFFFF790A2300
[PASS] Expected: 3 E8FFFFFFFFFFFFFFFFFFFF7A0A9900 / Got: 3 E8FFFFFFFFFFFFFFFFFFFF7A0A9900
[PASS] Expected: 3 F0FFFFFFFFFFFFFFFFFFFF000A1100 / Got: 3 F0FFFFFFFFFFFFFFFFFFFF000A1100
[PASS] Expected: 3 F0FFFFFFFFFFFFFFFFFFFFFF0A8800 / Got: 3 F0FFFFFFFFFFFFFFFFFFFFFF0A8800
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue1000-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue1000-bmv2.stf
[PASS] Expected: 0 CAFEADFFFFFF00000000000000A7 / Got: 0 CAFEADFFFFFF00000000000000A7
[PASS] Expected: 0 CAFEAD00000000000000000000A7 / Got: 0 CAFEAD00000000000000000000A7
[PASS] Expected: 0 CAFEAEFFFFFF00000000000000A6 / Got: 0 CAFEAEFFFFFF00000000000000A6
[PASS] Expected: 0 CAFE51FFFFFF00000000000000A6 / Got: 0 CAFE51FFFFFF00000000000000A6
[PASS] Expected: 0 CA7EADFFFFFF00000000000000A5 / Got: 0 CA7EADFFFFFF00000000000000A5
[PASS] Expected: 0 CA81ADFFFFFF00000000000000A5 / Got: 0 CA81ADFFFFFF00000000000000A5
[PASS] Expected: 0 CBFEADFFFFFF00000000000000A3 / Got: 0 CBFEADFFFFFF00000000000000A3
[PASS] Expected: 0 34FEADFFFFFF00000000000000A3 / Got: 0 34FEADFFFFFF00000000000000A3
[PASS] Expected: 0 CADEA5FFFFFF00000000000000A4 / Got: 0 CADEA5FFFFFF00000000000000A4
[PASS] Expected: 0 CA215AFFFFFF00000000000000A4 / Got: 0 CA215AFFFFFF00000000000000A4
[PASS] Expected: 0 C2FEA3FFFFFF00000000000000A2 / Got: 0 C2FEA3FFFFFF00000000000000A2
[PASS] Expected: 0 3DFE5CFFFFFF00000000000000A2 / Got: 0 3DFE5CFFFFFF00000000000000A2
[PASS] Expected: 0 C2FAADFFFFFF00000000000000A1 / Got: 0 C2FAADFFFFFF00000000000000A1
[PASS] Expected: 0 3D05ADFFFFFF00000000000000A1 / Got: 0 3D05ADFFFFFF00000000000000A1
[PASS] Expected: 0 DAF6A9FFFFFF00000000000000A0 / Got: 0 DAF6A9FFFFFF00000000000000A0
[PASS] Expected: 0 350956FFFFFF00000000000000A0 / Got: 0 350956FFFFFF00000000000000A0
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue1025-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue1025-bmv2.stf
[PASS] Expected: 0 000000010101080027018BBC08004400002C000100004006CDB30A00020F0A02030483031000157D005000000000000000005002200061010000 / Got: 0 000000010101080027018BBC08004400002C000100004006CDB30A00020F0A02030483031000157D005000000000000000005002200061010000
[PASS] Expected: 0 000000010000080027018BBC080048000030000100004006C89F0A00020F0A0203048307100A01020300157D005000000000000000005002200061010000 / Got: 0 000000010000080027018BBC080048000030000100004006C89F0A00020F0A0203048307100A01020300157D005000000000000000005002200061010000
[PASS] Expected: 0 000000010000080027018BBC080045000030000100004006C89F0A00020F0A0203048307100A01157D005000000000000000005002200061010000 / Got: 0 000000010000080027018BBC080045000030000100004006C89F0A00020F0A0203048307100A01157D005000000000000000005002200061010000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue1049-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue1049-bmv2.stf
[PASS] Expected: 0 82080000C0010000000000000800450000140001000040004CCE0C0C0C0C14020202 / Got: 0 82080000C0010000000000000800450000140001000040004CCE0C0C0C0C14020202
[PASS] Expected: 0 64BF0100DEAD00000000000008004500001400010000400659DE0A01010114020202 / Got: 0 64BF0100DEAD00000000000008004500001400010000400659DE0A01010114020202
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue1062-1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue1062-1-bmv2.stf
[PASS] Expected: 0 00000000 / Got: 0 00000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue1566-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue1566-bmv2.stf
[PASS] Expected: 0 000000000000000000000000AFE9 / Got: 0 000000000000000000000000AFE9
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue1755-1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue1755-1-bmv2.stf
[PASS] Expected: 0 11223344 / Got: 0 11223344
[PASS] Expected: 0 223344 / Got: 0 223344
[PASS] Expected: 0 3344 / Got: 0 3344
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue1755-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue1755-bmv2.stf
[PASS] Expected: 0 00 / Got: 0 00
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue1768-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue1768-bmv2.stf
[PASS] Expected: 0 112233445566778899AABBCCDDEEFF / Got: 0 112233445566778899AABBCCDDEEFF
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue1824-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue1824-bmv2.stf
[PASS] Expected: 0 000000000BAD778899AABBCC / Got: 0 000000000BAD778899AABBCC
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2147-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2147-bmv2.stf
[PASS] Expected: 0 1111111111112222222222223333FE / Got: 0 1111111111112222222222223333FE
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2153-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2153-bmv2.stf
[PASS] Expected: 0 1111111111112222222222223333FFEE / Got: 0 1111111111112222222222223333FFEE
[PASS] Expected: 1 11111111111122222222222233330055 / Got: 1 11111111111122222222222233330055
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2170-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2170-bmv2.stf
[PASS] Expected: 0 1111111111112222222222223333FFEE / Got: 0 1111111111112222222222223333FFEE
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2176-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2176-bmv2.stf
[PASS] Expected: 0 1111111111112222222222223333FF00 / Got: 0 1111111111112222222222223333FF00
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2205-1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2205-1-bmv2.stf
[PASS] Expected: 0 00000000000000000000000100B6 / Got: 0 00000000000000000000000100B6
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2205-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2205-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000004 / Got: 0 000000000000000000000000000004
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2221-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2221-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000806 / Got: 0 0000000000000000000000000806
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2225-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2225-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000003 / Got: 0 0000000000000000000000000003
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2343-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2343-bmv2.stf
[PASS] Expected: 0 0000000000010000000000008000 / Got: 0 0000000000010000000000008000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2375-1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2375-1-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2375-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2375-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000000 / Got: 0 0000000000000000000000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2383-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2383-bmv2.stf
[PASS] Expected: 0 0000000000010000000000010001 / Got: 0 0000000000010000000000010001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2392-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2392-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000001 / Got: 0 0000000000000000000000000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2498-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2498-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000003 / Got: 0 000000000000000000000000000003
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue2614-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue2614-bmv2.stf
[PASS] Expected: 0 000000000000000000000000000080 / Got: 0 000000000000000000000000000080
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue3488-1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue3488-1-bmv2.stf
[PASS] Expected: 2 525400123502080027F87BEA0000 / Got: 2 525400123502080027F87BEA0000
[PASS] Expected: 2 00123502525427F87BEA08000000 / Got: 2 00123502525427F87BEA08000000
[PASS] Expected: 2 3502525400127BEA080027F80000 / Got: 2 3502525400127BEA080027F80000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue3488-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue3488-bmv2.stf
Error: unknown error
>>>>> Rerunning run test on ../../../testdata/p4c/program/well-typed/issue3488-bmv2.p4 with ../../../testdata/p4c/stf/v1model-patch/issue3488-bmv2.stf
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue447-1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue447-1-bmv2.stf
[PASS] Expected: 0 5678123490 / Got: 0 5678123490
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue447-2-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue447-2-bmv2.stf
[PASS] Expected: 0 1234567890 / Got: 0 1234567890
[PASS] Expected: 0 1234567890 / Got: 0 1234567890
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue447-3-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue447-3-bmv2.stf
[PASS] Expected: 0 34567890 / Got: 0 34567890
[PASS] Expected: 0 567890 / Got: 0 567890
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue447-4-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue447-4-bmv2.stf
[PASS] Expected: 0 34567890 / Got: 0 34567890
[PASS] Expected: 0 567890 / Got: 0 567890
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue447-5-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue447-5-bmv2.stf
[PASS] Expected: 0 3412567890 / Got: 0 3412567890
[PASS] Expected: 0 5678123490 / Got: 0 5678123490
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue447-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue447-bmv2.stf
[PASS] Expected: 0 1234567890 / Got: 0 1234567890
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue510-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue510-bmv2.stf
[PASS] Expected: 0 34567890 / Got: 0 34567890
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue561-1-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue561-1-bmv2.stf
[PASS] Expected: 0 00FF0000 / Got: 0 00FF0000
[PASS] Expected: 0 01FFFF00 / Got: 0 01FFFF00
[PASS] Expected: 0 02000000 / Got: 0 02000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue561-2-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue561-2-bmv2.stf
[PASS] Expected: 0 000000 / Got: 0 000000
[PASS] Expected: 0 0100 / Got: 0 0100
[PASS] Expected: 0 02000000 / Got: 0 02000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue561-3-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue561-3-bmv2.stf
[PASS] Expected: 0 00FFFF0000 / Got: 0 00FFFF0000
[PASS] Expected: 0 01FF00 / Got: 0 01FF00
[PASS] Expected: 0 02000000 / Got: 0 02000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue561-4-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue561-4-bmv2.stf
[PASS] Expected: 0 00AAAA0000 / Got: 0 00AAAA0000
[PASS] Expected: 0 01AAFFFF00 / Got: 0 01AAFFFF00
[PASS] Expected: 0 02FFFFAA00 / Got: 0 02FFFFAA00
[PASS] Expected: 0 03FFFFFFFF / Got: 0 03FFFFFFFF
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue561-5-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue561-5-bmv2.stf
[PASS] Expected: 0 00FF0000 / Got: 0 00FF0000
[PASS] Expected: 0 01FFFF00 / Got: 0 01FFFF00
[PASS] Expected: 0 02000000 / Got: 0 02000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue561-6-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue561-6-bmv2.stf
[PASS] Expected: 0 00AAAA0000 / Got: 0 00AAAA0000
[PASS] Expected: 0 01AAFFFF00 / Got: 0 01AAFFFF00
[PASS] Expected: 0 02FFFFAA00 / Got: 0 02FFFFAA00
[PASS] Expected: 0 03FFFFFFFF / Got: 0 03FFFFFFFF
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue561-7-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue561-7-bmv2.stf
[PASS] Expected: 0 000000 / Got: 0 000000
[PASS] Expected: 0 0100 / Got: 0 0100
[PASS] Expected: 0 02000000 / Got: 0 02000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue635-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue635-bmv2.stf
[PASS] Expected: 0 1234567890 / Got: 0 1234567890
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue655-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue655-bmv2.stf
[PASS] Expected: 0 0001FFFE / Got: 0 0001FFFE
[PASS] Expected: 0 0002FFFD / Got: 0 0002FFFD
[PASS] Expected: 0 0000FFFF / Got: 0 0000FFFF
[PASS] Expected: 0 FFFF0000 / Got: 0 FFFF0000
[PASS] Expected: 0 FFFE0001 / Got: 0 FFFE0001
[PASS] Expected: 0 FFFF0000 / Got: 0 FFFF0000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue774-4-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue774-4-bmv2.stf
[PASS] Expected: 0 00000001 / Got: 0 00000001
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue983-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue983-bmv2.stf
[PASS] Expected: 0 0000000000000000000000000800 / Got: 0 0000000000000000000000000800
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/issue995-bmv2.p4 with ../../../testdata/p4c/stf/v1model/issue995-bmv2.stf
[PASS] Expected: 0 0000000004560000022E00000005 / Got: 0 0000000004560000022E00000005
[PASS] Expected: 0 FFFFFFFFF456FFFF012FFFFF0004 / Got: 0 FFFFFFFFF456FFFF012FFFFF0004
[PASS] Expected: 0 0000000004560000012F00000001 / Got: 0 0000000004560000012F00000001
[PASS] Expected: 0 000000000456FFFF012FFFFF0002 / Got: 0 000000000456FFFF012FFFFF0002
[PASS] Expected: 0 0000000004568000012F00000002 / Got: 0 0000000004568000012F00000002
[PASS] Expected: 0 FFFFFFFFF4560000012F00000003 / Got: 0 FFFFFFFFF4560000012F00000003
[PASS] Expected: 0 8000000004560000012F00000003 / Got: 0 8000000004560000012F00000003
[PASS] Expected: 0 FFFFFFFFF456FFFF012FFFFF0004 / Got: 0 FFFFFFFFF456FFFF012FFFFF0004
[PASS] Expected: 0 0400000004560200012F00000004 / Got: 0 0400000004560200012F00000004
[PASS] Expected: 0 FFFFFFFFF456FFFF012EFFFF0005 / Got: 0 FFFFFFFFF456FFFF012EFFFF0005
[PASS] Expected: 0 0000000004760000012F00000005 / Got: 0 0000000004760000012F00000005
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/key-bmv2.p4 with ../../../testdata/p4c/stf/v1model/key-bmv2.stf
Error: unknown error
>>>>> Rerunning run test on ../../../testdata/p4c/program/well-typed/key-bmv2.p4 with ../../../testdata/p4c/stf/v1model-patch/key-bmv2.stf
[PASS] Expected: 0 0000000000000000 / Got: 0 0000000000000000
[PASS] Expected: 0 0000000100000000 / Got: 0 0000000100000000
[PASS] Expected: 0 0000000200000002 / Got: 0 0000000200000002
[PASS] Expected: 0 0000001000000000 / Got: 0 0000001000000000
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/match-on-exprs-bmv2.p4 with ../../../testdata/p4c/stf/v1model/match-on-exprs-bmv2.stf
[PASS] Expected: 3 FF01FF7DFF010000007C003EF019 / Got: 3 FF01FF7DFF010000007C003EF019
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test1.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test1.stf
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 3 01234567 / Got: 3 01234567
[PASS] Expected: 3 01234567 / Got: 3 01234567
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test10.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test10.stf
[PASS] Expected: 1 2A23456789 / Got: 1 2A23456789
[PASS] Expected: 1 2A23456789 / Got: 1 2A23456789
[PASS] Expected: 10 012A6789 / Got: 10 012A6789
[PASS] Expected: 1 2A2A6789 / Got: 1 2A2A6789
[PASS] Expected: 10 012A456789 / Got: 10 012A456789
[PASS] Expected: 1 2A2A456789 / Got: 1 2A2A456789
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test11.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test11.stf
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 3 01234567 / Got: 3 01234567
[PASS] Expected: 3 01234567 / Got: 3 01234567
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test12.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test12.stf
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 3 01234567 / Got: 3 01234567
[PASS] Expected: 3 01234567 / Got: 3 01234567
[PASS] Expected: 3 01234567 / Got: 3 01234567
[PASS] Expected: 3 01234567 / Got: 3 01234567
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test13.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test13.stf
[PASS] Expected: 10 0123456789 / Got: 10 0123456789
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 3 01236789 / Got: 3 01236789
[PASS] Expected: 3 01236789 / Got: 3 01236789
[PASS] Expected: 2 023456789A / Got: 2 023456789A
[PASS] Expected: 2 023456789A / Got: 2 023456789A
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test2.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test2.stf
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 3 01234567 / Got: 3 01234567
[PASS] Expected: 3 012367 / Got: 3 012367
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
[PASS] Expected: 2 02345678 / Got: 2 02345678
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test3.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test3.stf
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 3 01230167 / Got: 3 01230167
[PASS] Expected: 3 01230167 / Got: 3 01230167
[PASS] Expected: 3 012367 / Got: 3 012367
[PASS] Expected: 3 012367 / Got: 3 012367
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 3 012367 / Got: 3 012367
[PASS] Expected: 3 012367 / Got: 3 012367
[PASS] Expected: 2 02345678 / Got: 2 02345678
[PASS] Expected: 2 02345678 / Got: 2 02345678
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test4.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test4.stf
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 2301456789 / Got: 10 2301456789
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 3 01230167 / Got: 3 01230167
[PASS] Expected: 3 012367 / Got: 3 012367
[PASS] Expected: 3 012367 / Got: 3 012367
[PASS] Expected: 3 012367 / Got: 3 012367
[PASS] Expected: 2 0234560178 / Got: 2 0234560178
[PASS] Expected: 2 02345678 / Got: 2 02345678
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 3 012367 / Got: 3 012367
[PASS] Expected: 3 012367 / Got: 3 012367
[PASS] Expected: 2 02345678 / Got: 2 02345678
[PASS] Expected: 2 02345678 / Got: 2 02345678
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test5.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test5.stf
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 3 01236789 / Got: 3 01236789
[PASS] Expected: 3 01236789 / Got: 3 01236789
[PASS] Expected: 2 023456789A / Got: 2 023456789A
[PASS] Expected: 2 023456789A / Got: 2 023456789A
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test6.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test6.stf
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 11 23456789 / Got: 11 23456789
[PASS] Expected: 10 23456789 / Got: 10 23456789
[PASS] Expected: 3 01236789 / Got: 3 01236789
[PASS] Expected: 13 01236789 / Got: 13 01236789
[PASS] Expected: 2 023456789A / Got: 2 023456789A
[PASS] Expected: 12 023456789A / Got: 12 023456789A
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test7.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test7.stf
[PASS] Expected: 1 2A23456789 / Got: 1 2A23456789
[PASS] Expected: 10 012A456789 / Got: 10 012A456789
[PASS] Expected: 1 2A2A456789 / Got: 1 2A2A456789
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test8.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test8.stf
[PASS] Expected: 1 2A23456789 / Got: 1 2A23456789
[PASS] Expected: 1 2A23456789 / Got: 1 2A23456789
[PASS] Expected: 10 012A456789 / Got: 10 012A456789
[PASS] Expected: 1 2A2A456789 / Got: 1 2A2A456789
Run success
>>> Running run test on ../../../testdata/p4c/program/well-typed/parser-inline/parser-inline-test9.p4 with ../../../testdata/p4c/stf/v1model/parser-inline/parser-inline-test9.stf
[PASS] Expected: 1 2A23456789 / Got: 1 2A23456789
[PASS] Expected: 1 2A23456789 / Got: 1 2A23456789
[PASS] Expected: 10 012A6789 / Got: 10 012A6789
[PASS] Expected: 1 2A2A6789 / Got: 1 2A2A6789
[PASS] Expected: 10 012A6789 / Got: 10 012A6789
[PASS] Expected: 1 2A2A6789 / Got: 1 2A2A6789
Run success