This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun-tests.sh.reference
1667 lines (1640 loc) · 102 KB
/
run-tests.sh.reference
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
>> Syncing opam environment
[WARNING] Running as root is not recommended
>> Running reference interpreter testsuite (cwd: /artifact/wasm-spec/interpreter)
echo >_tags "true: bin_annot"
echo >>_tags "true: debug"
echo >>_tags "<{util,syntax,binary,text,valid,runtime,exec,script,host,main,tests}/*.cmx>: for-pack(Wasm)"
ocamlbuild -lexflags -ml -cflags '-w +a-4-27-42-44-45-70 -warn-error +a-3' -I util -I syntax -I binary -I text -I valid -I runtime -I exec -I script -I host -I main -I tests -quiet main.native
mv main.native wasm
ocamlbuild -lexflags -ml -cflags '-w +a-4-27-42-44-45-70 -warn-error +a-3' -I util -I syntax -I binary -I text -I valid -I runtime -I exec -I script -I host -I main -I tests -quiet smallint.native
../test/core/run.py --wasm `pwd`/wasm
...............................................................................................................................................................
----------------------------------------------------------------------
Ran 159 tests in 36.145s
OK
./smallint.native
rm _tags
>> ######################################################
>> Syncing cargo environment
>> Running wasm-tools testsuite (cwd: /artifact/wasm-tools)
[0m[0m[1m[32m Updating[0m crates.io index
[0m[0m[1m[32m Downloading[0m crates ...
[0m[0m[1m[32m Downloaded[0m clap v4.3.11
[0m[0m[1m[32m Downloaded[0m ruzstd v0.3.1
[0m[0m[1m[32m Downloaded[0m anstyle-query v1.0.0
[0m[0m[1m[32m Downloaded[0m num_cpus v1.16.0
[0m[0m[1m[32m Downloaded[0m flagset v0.4.3
[0m[0m[1m[32m Downloaded[0m object v0.31.1
[0m[0m[1m[32m Downloaded[0m bitflags v2.3.3
[0m[0m[1m[32m Downloaded[0m quote v1.0.29
[0m[0m[1m[32m Downloaded[0m is_executable v1.0.1
[0m[0m[1m[32m Downloaded[0m anstyle v1.0.1
[0m[0m[1m[32m Downloaded[0m clap_lex v0.5.0
[0m[0m[1m[32m Downloaded[0m linked-hash-map v0.5.6
[0m[0m[1m[32m Downloaded[0m itoa v1.0.8
[0m[0m[1m[32m Downloaded[0m getrandom v0.2.10
[0m[0m[1m[32m Downloaded[0m rustix v0.37.23
[0m[0m[1m[32m Downloaded[0m url v2.4.0
[0m[0m[1m[32m Downloaded[0m log v0.4.19
[0m[0m[1m[32m Downloaded[0m is-terminal v0.4.9
[0m[0m[1m[32m Downloaded[0m serde_derive v1.0.171
[0m[0m[1m[32m Downloaded[0m ryu v1.0.14
[0m[0m[1m[32m Downloaded[0m memoffset v0.9.0
[0m[0m[1m[32m Downloaded[0m pretty_assertions v1.4.0
[0m[0m[1m[32m Downloaded[0m thiserror-impl v1.0.43
[0m[0m[1m[32m Downloaded[0m yansi v0.5.1
[0m[0m[1m[32m Downloaded[0m tempfile v3.6.0
[0m[0m[1m[32m Downloaded[0m yaml-rust v0.4.5
[0m[0m[1m[32m Downloaded[0m proc-macro2 v1.0.64
[0m[0m[1m[32m Downloaded[0m symbolic_expressions v5.0.3
[0m[0m[1m[32m Downloaded[0m miniz_oxide v0.7.1
[0m[0m[1m[32m Downloaded[0m form_urlencoded v1.2.0
[0m[0m[1m[32m Downloaded[0m crossbeam-epoch v0.9.15
[0m[0m[1m[32m Downloaded[0m arrayref v0.3.7
[0m[0m[1m[32m Downloaded[0m env_logger v0.9.3
[0m[0m[1m[32m Downloaded[0m arrayvec v0.7.4
[0m[0m[1m[32m Downloaded[0m unicode-ident v1.0.10
[0m[0m[1m[32m Downloaded[0m flate2 v1.0.26
[0m[0m[1m[32m Downloaded[0m petgraph v0.6.3
[0m[0m[1m[32m Downloaded[0m blake3 v1.4.1
[0m[0m[1m[32m Downloaded[0m fixedbitset v0.4.2
[0m[0m[1m[32m Downloaded[0m adler v1.0.2
[0m[0m[1m[32m Downloaded[0m serde_yaml v0.8.26
[0m[0m[1m[32m Downloaded[0m serde v1.0.171
[0m[0m[1m[32m Downloaded[0m fastrand v1.9.0
[0m[0m[1m[32m Downloaded[0m crossbeam-utils v0.8.16
[0m[0m[1m[32m Downloaded[0m utf8parse v0.2.1
[0m[0m[1m[32m Downloaded[0m twox-hash v1.6.3
[0m[0m[1m[32m Downloaded[0m thiserror v1.0.43
[0m[0m[1m[32m Downloaded[0m regex v1.9.1
[0m[0m[1m[32m Downloaded[0m clap_builder v4.3.11
[0m[0m[1m[32m Downloaded[0m subtle v2.5.0
[0m[0m[1m[32m Downloaded[0m smallvec v1.11.0
[0m[0m[1m[32m Downloaded[0m memmap2 v0.5.10
[0m[0m[1m[32m Downloaded[0m cpp_demangle v0.4.2
[0m[0m[1m[32m Downloaded[0m clap_derive v4.3.2
[0m[0m[1m[32m Downloaded[0m addr2line v0.20.0
[0m[0m[1m[32m Downloaded[0m static_assertions v1.1.0
[0m[0m[1m[32m Downloaded[0m percent-encoding v2.3.0
[0m[0m[1m[32m Downloaded[0m instant v0.1.12
[0m[0m[1m[32m Downloaded[0m diff v0.1.13
[0m[0m[1m[32m Downloaded[0m constant_time_eq v0.3.0
[0m[0m[1m[32m Downloaded[0m egg v0.6.0
[0m[0m[1m[32m Downloaded[0m anstream v0.3.2
[0m[0m[1m[32m Downloaded[0m serde_json v1.0.102
[0m[0m[1m[32m Downloaded[0m gimli v0.27.3
[0m[0m[1m[32m Downloaded[0m regex-syntax v0.7.4
[0m[0m[1m[32m Downloaded[0m rustix v0.38.4
[0m[0m[1m[32m Downloaded[0m syn v2.0.25
[0m[0m[1m[32m Downloaded[0m colorchoice v1.0.0
[0m[0m[1m[32m Downloaded[0m anstyle-parse v0.2.1
[0m[0m[1m[32m Downloaded[0m idna v0.4.0
[0m[0m[1m[32m Downloaded[0m regex-automata v0.3.3
[0m[0m[1m[32m Downloaded[0m libc v0.2.147
[0m[0m[1m[32m Downloaded[0m linux-raw-sys v0.4.3
[0m[0m[1m[32m Compiling[0m proc-macro2 v1.0.64
[0m[0m[1m[32m Compiling[0m unicode-ident v1.0.10
[0m[0m[1m[32m Compiling[0m quote v1.0.29
[0m[0m[1m[32m Compiling[0m autocfg v1.1.0
[0m[0m[1m[32m Compiling[0m cfg-if v1.0.0
[0m[0m[1m[32m Compiling[0m serde v1.0.171
[0m[0m[1m[32m Compiling[0m libc v0.2.147
[0m[0m[1m[32m Compiling[0m hashbrown v0.12.3
[0m[0m[1m[32m Compiling[0m version_check v0.9.4
[0m[0m[1m[32m Compiling[0m memchr v2.5.0
[0m[0m[1m[32m Compiling[0m semver v1.0.17
[0m[0m[1m[32m Compiling[0m rustix v0.38.4
[0m[0m[1m[32m Compiling[0m bitflags v2.3.3
[0m[0m[1m[32m Compiling[0m linux-raw-sys v0.4.3
[0m[0m[1m[32m Compiling[0m utf8parse v0.2.1
[0m[0m[1m[32m Compiling[0m leb128 v0.2.5
[0m[0m[1m[32m Compiling[0m colorchoice v1.0.0
[0m[0m[1m[32m Compiling[0m anyhow v1.0.71
[0m[0m[1m[32m Compiling[0m anstyle-query v1.0.0
[0m[0m[1m[32m Compiling[0m anstyle v1.0.1
[0m[0m[1m[32m Compiling[0m log v0.4.19
[0m[0m[1m[32m Compiling[0m once_cell v1.18.0
[0m[0m[1m[32m Compiling[0m typenum v1.16.0
[0m[0m[1m[32m Compiling[0m heck v0.4.1
[0m[0m[1m[32m Compiling[0m clap_lex v0.5.0
[0m[0m[1m[32m Compiling[0m anstyle-parse v0.2.1
[0m[0m[1m[32m Compiling[0m strsim v0.10.0
[0m[0m[1m[32m Compiling[0m wasm-encoder v0.29.0 (/artifact/wasm-tools/crates/wasm-encoder)
[0m[0m[1m[32m Compiling[0m thiserror v1.0.43
[0m[0m[1m[32m Compiling[0m tinyvec_macros v0.1.1
[0m[0m[1m[32m Compiling[0m crossbeam-utils v0.8.16
[0m[0m[1m[32m Compiling[0m tinyvec v1.6.0
[0m[0m[1m[32m Compiling[0m bitflags v1.3.2
[0m[0m[1m[32m Compiling[0m percent-encoding v2.3.0
[0m[0m[1m[32m Compiling[0m crc32fast v1.3.2
[0m[0m[1m[32m Compiling[0m unicode-width v0.1.10
[0m[0m[1m[32m Compiling[0m smallvec v1.11.0
[0m[0m[1m[32m Compiling[0m pulldown-cmark v0.8.0
[0m[0m[1m[32m Compiling[0m generic-array v0.14.7
[0m[0m[1m[32m Compiling[0m unicase v2.6.0
[0m[0m[1m[32m Compiling[0m unicode-bidi v0.3.13
[0m[0m[1m[32m Compiling[0m adler v1.0.2
[0m[0m[1m[32m Compiling[0m indexmap v1.9.3
[0m[0m[1m[32m Compiling[0m memoffset v0.9.0
[0m[0m[1m[32m Compiling[0m crossbeam-epoch v0.9.15
[0m[0m[1m[32m Compiling[0m form_urlencoded v1.2.0
[0m[0m[1m[32m Compiling[0m ppv-lite86 v0.2.17
[0m[0m[1m[32m Compiling[0m io-lifetimes v1.0.11
[0m[0m[1m[32m Compiling[0m scopeguard v1.1.0
[0m[0m[1m[32m Compiling[0m static_assertions v1.1.0
[0m[0m[1m[32m Compiling[0m cc v1.0.79
[0m[0m[1m[32m Compiling[0m miniz_oxide v0.7.1
[0m[0m[1m[32m Compiling[0m instant v0.1.12
[0m[0m[1m[32m Compiling[0m regex-syntax v0.7.4
[0m[0m[1m[32m Compiling[0m twox-hash v1.6.3
[0m[0m[1m[32m Compiling[0m rayon-core v1.11.0
[0m[0m[1m[32m Compiling[0m byteorder v1.4.3
[0m[0m[1m[32m Compiling[0m cpp_demangle v0.4.2
[0m[0m[1m[32m Compiling[0m unicode-xid v0.2.4
[0m[0m[1m[32m Compiling[0m ryu v1.0.14
[0m[0m[1m[32m Compiling[0m aho-corasick v1.0.2
[0m[0m[1m[32m Compiling[0m subtle v2.5.0
[0m[0m[1m[32m Compiling[0m id-arena v2.2.1
[0m[0m[1m[32m Compiling[0m rustix v0.37.23
[0m[0m[1m[32m Compiling[0m linked-hash-map v0.5.6
[0m[0m[1m[32m Compiling[0m symbolic_expressions v5.0.3
[0m[0m[1m[32m Compiling[0m crossbeam-channel v0.5.8
[0m[0m[1m[32m Compiling[0m syn v2.0.25
[0m[0m[1m[32m Compiling[0m tempfile v3.6.0
[0m[0m[1m[32m Compiling[0m stable_deref_trait v1.2.0
[0m[0m[1m[32m Compiling[0m unicode-normalization v0.1.22
[0m[0m[1m[32m Compiling[0m crossbeam-deque v0.8.3
[0m[0m[1m[32m Compiling[0m yaml-rust v0.4.5
[0m[0m[1m[32m Compiling[0m flate2 v1.0.26
[0m[0m[1m[32m Compiling[0m fixedbitset v0.4.2
[0m[0m[1m[32m Compiling[0m serde_json v1.0.102
[0m[0m[1m[32m Compiling[0m wast v60.0.0 (/artifact/wasm-tools/crates/wast)
[0m[0m[1m[32m Compiling[0m arrayref v0.3.7
[0m[0m[1m[32m Compiling[0m linux-raw-sys v0.3.8
[0m[0m[1m[32m Compiling[0m is-terminal v0.4.9
[0m[0m[1m[32m Compiling[0m constant_time_eq v0.3.0
[0m[0m[1m[32m Compiling[0m anstream v0.3.2
[0m[0m[1m[32m Compiling[0m fallible-iterator v0.2.0
[0m[0m[1m[32m Compiling[0m arrayvec v0.7.4
[0m[0m[1m[32m Compiling[0m itoa v1.0.8
[0m[0m[1m[32m Compiling[0m either v1.8.1
[0m[0m[1m[32m Compiling[0m clap_builder v4.3.11
[0m[0m[1m[32m Compiling[0m termcolor v1.2.0
[0m[0m[1m[32m Compiling[0m humantime v2.1.0
[0m[0m[1m[32m Compiling[0m fastrand v1.9.0
[0m[0m[1m[32m Compiling[0m rustc-demangle v0.1.23
[0m[0m[1m[32m Compiling[0m wasm-tools v1.0.35 (/artifact/wasm-tools)
[0m[0m[1m[32m Compiling[0m is_executable v1.0.1
[0m[0m[1m[32m Compiling[0m idna v0.4.0
[0m[0m[1m[32m Compiling[0m yansi v0.5.1
[0m[0m[1m[32m Compiling[0m diff v0.1.13
[0m[0m[1m[32m Compiling[0m blake3 v1.4.1
[0m[0m[1m[32m Compiling[0m pretty_assertions v1.4.0
[0m[0m[1m[32m Compiling[0m getrandom v0.2.10
[0m[0m[1m[32m Compiling[0m num_cpus v1.16.0
[0m[0m[1m[32m Compiling[0m atty v0.2.14
[0m[0m[1m[32m Compiling[0m memmap2 v0.5.10
[0m[0m[1m[32m Compiling[0m rand_core v0.6.4
[0m[0m[1m[32m Compiling[0m block-buffer v0.10.4
[0m[0m[1m[32m Compiling[0m crypto-common v0.1.6
[0m[0m[1m[32m Compiling[0m rand_chacha v0.3.1
[0m[0m[1m[32m Compiling[0m digest v0.10.7
[0m[0m[1m[32m Compiling[0m url v2.4.0
[0m[0m[1m[32m Compiling[0m rand v0.8.5
[0m[0m[1m[32m Compiling[0m rayon v1.7.0
[0m[0m[1m[32m Compiling[0m regex-automata v0.3.3
[0m[0m[1m[32m Compiling[0m serde_derive v1.0.171
[0m[0m[1m[32m Compiling[0m clap_derive v4.3.2
[0m[0m[1m[32m Compiling[0m thiserror-impl v1.0.43
[0m[0m[1m[32m Compiling[0m derive_arbitrary v1.3.1
[0m[0m[1m[32m Compiling[0m arbitrary v1.3.0
[0m[0m[1m[32m Compiling[0m regex v1.9.1
[0m[0m[1m[32m Compiling[0m ruzstd v0.3.1
[0m[0m[1m[32m Compiling[0m env_logger v0.9.3
[0m[0m[1m[32m Compiling[0m object v0.31.1
[0m[0m[1m[32m Compiling[0m clap v4.3.11
[0m[0m[1m[32m Compiling[0m wat v1.0.66 (/artifact/wasm-tools/crates/wat)
[0m[0m[1m[32m Compiling[0m flagset v0.4.3
[0m[0m[1m[32m Compiling[0m wasmparser v0.107.0 (/artifact/wasm-tools/crates/wasmparser)
[0m[0m[1m[32m Compiling[0m egg v0.6.0
[0m[0m[1m[32m Compiling[0m wit-parser v0.8.0 (/artifact/wasm-tools/crates/wit-parser)
[0m[0m[1m[32m Compiling[0m serde_yaml v0.8.26
[0m[0m[1m[32m Compiling[0m petgraph v0.6.3
[0m[0m[1m[32m Compiling[0m gimli v0.27.3
[0m[0m[1m[32m Compiling[0m addr2line v0.20.0
[0m[0m[1m[32m Compiling[0m wasm-metadata v0.8.0 (/artifact/wasm-tools/crates/wasm-metadata)
[0m[0m[1m[32m Compiling[0m wasm-mutate v0.2.27 (/artifact/wasm-tools/crates/wasm-mutate)
[0m[0m[1m[32m Compiling[0m wasm-smith v0.12.10 (/artifact/wasm-tools/crates/wasm-smith)
[0m[0m[1m[32m Compiling[0m wasmprinter v0.2.59 (/artifact/wasm-tools/crates/wasmprinter)
[0m[0m[1m[32m Compiling[0m wasm-compose v0.2.17 (/artifact/wasm-tools/crates/wasm-compose)
[0m[0m[1m[32m Compiling[0m wit-component v0.11.0 (/artifact/wasm-tools/crates/wit-component)
[0m[0m[1m[32m Compiling[0m wit-smith v0.1.5 (/artifact/wasm-tools/crates/wit-smith)
[0m[0m[1m[32m Compiling[0m wasm-shrink v0.1.28 (/artifact/wasm-tools/crates/wasm-shrink)
[0m[0m[1m[32m Finished[0m test [unoptimized + debuginfo] target(s) in 21.68s
[0m[0m[1m[32m Running[0m unittests src/lib.rs (target/debug/deps/wasm_tools-0d69c7695ec00810)
running 0 tests
test result: [32mok(B[m. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[0m[0m[1m[32m Running[0m unittests src/bin/wasm-tools/main.rs (target/debug/deps/wasm_tools-361dcdb92f2da837)
running 1 test
test verify_cli ... [32mok(B[m
test result: [32mok(B[m. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[0m[0m[1m[32m Running[0m tests/cli.rs (target/debug/deps/cli-9996712f4f62c902)
running 40 tests
test result: ok. 40 passed
[0m[0m[1m[32m Running[0m tests/roundtrip.rs (target/debug/deps/roundtrip-a9209284c98dd72b)
running 388 test files
test result: ok. 22305 directives passed
[0m[0m[1m[32m Doc-tests[0m wasm-tools
running 0 tests
test result: [32mok(B[m. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
>> ######################################################
>> Running wasmtime testsuite (cwd: /artifact/wasmtime)
[0m[0m[1m[32m Downloading[0m crates ...
[0m[0m[1m[32m Downloaded[0m cast v0.3.0
[0m[0m[1m[32m Downloaded[0m tinytemplate v1.2.1
[0m[0m[1m[32m Downloaded[0m criterion v0.4.0
[0m[0m[1m[32m Downloaded[0m wasm-metadata v0.8.0
[0m[0m[1m[32m Downloaded[0m plotters-backend v0.3.4
[0m[0m[1m[32m Downloaded[0m tempfile v3.5.0
[0m[0m[1m[32m Downloaded[0m cargo_metadata v0.15.4
[0m[0m[1m[32m Downloaded[0m wasm-encoder v0.29.0
[0m[0m[1m[32m Downloaded[0m num-traits v0.2.15
[0m[0m[1m[32m Downloaded[0m half v1.8.2
[0m[0m[1m[32m Downloaded[0m wit-component v0.11.0
[0m[0m[1m[32m Downloaded[0m regex-automata v0.1.10
[0m[0m[1m[32m Downloaded[0m plotters v0.3.4
[0m[0m[1m[32m Downloaded[0m wasmparser v0.107.0
[0m[0m[1m[32m Downloaded[0m bstr v0.2.17
[0m[0m[1m[32m Downloaded[0m ciborium v0.2.1
[0m[0m[1m[32m Downloaded[0m anes v0.1.6
[0m[0m[1m[32m Downloaded[0m oorandom v11.1.3
[0m[0m[1m[32m Downloaded[0m lazy_static v1.4.0
[0m[0m[1m[32m Downloaded[0m filecheck v0.5.0
[0m[0m[1m[32m Downloaded[0m camino v1.1.4
[0m[0m[1m[32m Downloaded[0m plotters-svg v0.3.3
[0m[0m[1m[32m Downloaded[0m criterion-plot v0.5.0
[0m[0m[1m[32m Downloaded[0m ciborium-ll v0.2.1
[0m[0m[1m[32m Downloaded[0m ciborium-io v0.2.1
[0m[0m[1m[32m Downloaded[0m cargo-platform v0.1.2
[0m[0m[1m[32m Downloading[0m crates ...
[0m[0m[1m[32m Downloaded[0m windows-sys v0.48.0
[0m[0m[1m[32m Compiling[0m proc-macro2 v1.0.59
[0m[0m[1m[32m Compiling[0m unicode-ident v1.0.9
[0m[0m[1m[32m Compiling[0m quote v1.0.28
[0m[0m[1m[32m Compiling[0m autocfg v1.1.0
[0m[0m[1m[32m Compiling[0m libc v0.2.145
[0m[0m[1m[32m Compiling[0m cfg-if v1.0.0
[0m[0m[1m[32m Compiling[0m once_cell v1.18.0
[0m[0m[1m[32m Compiling[0m version_check v0.9.4
[0m[0m[1m[32m Compiling[0m log v0.4.18
[0m[0m[1m[32m Compiling[0m memchr v2.5.0
[0m[0m[1m[32m Compiling[0m serde v1.0.163
[0m[0m[1m[32m Compiling[0m hashbrown v0.12.3
[0m[0m[1m[32m Compiling[0m itoa v1.0.6
[0m[0m[1m[32m Compiling[0m bitflags v1.3.2
[0m[0m[1m[32m Compiling[0m anyhow v1.0.71
[0m[0m[1m[32m Compiling[0m io-lifetimes v1.0.11
[0m[0m[1m[32m Compiling[0m thiserror v1.0.40
[0m[0m[1m[32m Compiling[0m leb128 v0.2.5
[0m[0m[1m[32m Compiling[0m rustix v0.37.19
[0m[0m[1m[32m Compiling[0m linux-raw-sys v0.3.8
[0m[0m[1m[32m Compiling[0m regex-syntax v0.7.2
[0m[0m[1m[32m Compiling[0m target-lexicon v0.12.7
[0m[0m[1m[32m Compiling[0m termcolor v1.2.0
[0m[0m[1m[32m Compiling[0m fallible-iterator v0.2.0
[0m[0m[1m[32m Compiling[0m stable_deref_trait v1.2.0
[0m[0m[1m[32m Compiling[0m semver v1.0.17
[0m[0m[1m[32m Compiling[0m cranelift-isle v0.98.0 (/artifact/wasmtime/cranelift/isle/isle)
[0m[0m[1m[32m Compiling[0m cranelift-codegen-shared v0.98.0 (/artifact/wasmtime/cranelift/codegen/shared)
[0m[0m[1m[32m Compiling[0m ahash v0.8.3
[0m[0m[1m[32m Compiling[0m crc32fast v1.3.2
[0m[0m[1m[32m Compiling[0m indexmap v1.9.3
[0m[0m[1m[32m Compiling[0m tinyvec_macros v0.1.1
[0m[0m[1m[32m Compiling[0m unicase v2.6.0
[0m[0m[1m[32m Compiling[0m tinyvec v1.6.0
[0m[0m[1m[32m Compiling[0m cranelift-codegen-meta v0.98.0 (/artifact/wasmtime/cranelift/codegen/meta)
[0m[0m[1m[32m Compiling[0m heck v0.4.1
[0m[0m[1m[32m Compiling[0m syn v1.0.109
[0m[0m[1m[32m Compiling[0m memoffset v0.8.0
[0m[0m[1m[32m Compiling[0m wasm-encoder v0.29.0 (/artifact/wasm-tools/crates/wasm-encoder)
[0m[0m[1m[32m Compiling[0m pulldown-cmark v0.8.0
[0m[0m[1m[32m Compiling[0m percent-encoding v2.2.0
[0m[0m[1m[32m Compiling[0m slice-group-by v0.3.1
[0m[0m[1m[32m Compiling[0m ryu v1.0.13
[0m[0m[1m[32m Compiling[0m rustc-hash v1.1.0
[0m[0m[1m[32m Compiling[0m unicode-bidi v0.3.13
[0m[0m[1m[32m Compiling[0m smallvec v1.10.0
[0m[0m[1m[32m Compiling[0m form_urlencoded v1.1.0
[0m[0m[1m[32m Compiling[0m wasmtime-component-util v11.0.0 (/artifact/wasmtime/crates/component-util)
[0m[0m[1m[32m Compiling[0m aho-corasick v1.0.2
[0m[0m[1m[32m Compiling[0m hashbrown v0.13.2
[0m[0m[1m[32m Compiling[0m bumpalo v3.13.0
[0m[0m[1m[32m Compiling[0m typenum v1.16.0
[0m[0m[1m[32m Compiling[0m crossbeam-utils v0.8.15
[0m[0m[1m[32m Compiling[0m generic-array v0.14.7
[0m[0m[1m[32m Compiling[0m id-arena v2.2.1
[0m[0m[1m[32m Compiling[0m pkg-config v0.3.27
[0m[0m[1m[32m Compiling[0m unicode-xid v0.2.4
[0m[0m[1m[32m Compiling[0m crossbeam-epoch v0.9.14
[0m[0m[1m[32m Compiling[0m syn v2.0.18
[0m[0m[1m[32m Compiling[0m either v1.8.1
[0m[0m[1m[32m Compiling[0m ppv-lite86 v0.2.17
[0m[0m[1m[32m Compiling[0m serde_json v1.0.96
[0m[0m[1m[32m Compiling[0m scopeguard v1.1.0
[0m[0m[1m[32m Compiling[0m wasmtime-asm-macros v11.0.0 (/artifact/wasmtime/crates/asm-macros)
[0m[0m[1m[32m Compiling[0m rayon-core v1.11.0
[0m[0m[1m[32m Compiling[0m jobserver v0.1.26
[0m[0m[1m[32m Compiling[0m paste v1.0.12
[0m[0m[1m[32m Compiling[0m zstd-safe v5.0.2+zstd.1.5.2
[0m[0m[1m[32m Compiling[0m itertools v0.10.5
[0m[0m[1m[32m Compiling[0m cpp_demangle v0.3.5
[0m[0m[1m[32m Compiling[0m unicode-normalization v0.1.22
[0m[0m[1m[32m Compiling[0m pin-project-lite v0.2.9
[0m[0m[1m[32m Compiling[0m cc v1.0.79
[0m[0m[1m[32m Compiling[0m winch-codegen v0.9.0 (/artifact/wasmtime/winch/codegen)
[0m[0m[1m[32m Compiling[0m humantime v2.1.0
[0m[0m[1m[32m Compiling[0m regalloc2 v0.9.1
[0m[0m[1m[32m Compiling[0m encoding_rs v0.8.32
[0m[0m[1m[32m Compiling[0m wasmtime-cache v11.0.0 (/artifact/wasmtime/crates/cache)
[0m[0m[1m[32m Compiling[0m async-trait v0.1.68
[0m[0m[1m[32m Compiling[0m uuid v1.3.3
[0m[0m[1m[32m Compiling[0m byteorder v1.4.3
[0m[0m[1m[32m Compiling[0m crossbeam-channel v0.5.8
[0m[0m[1m[32m Compiling[0m unicode-width v0.1.10
[0m[0m[1m[32m Compiling[0m cpufeatures v0.2.7
[0m[0m[1m[32m Compiling[0m sptr v0.3.2
[0m[0m[1m[32m Compiling[0m wast v60.0.0 (/artifact/wasm-tools/crates/wast)
[0m[0m[1m[32m Compiling[0m fxhash v0.2.1
[0m[0m[1m[32m Compiling[0m idna v0.3.0
[0m[0m[1m[32m Compiling[0m debugid v0.8.0
[0m[0m[1m[32m Compiling[0m crossbeam-deque v0.8.3
[0m[0m[1m[32m Compiling[0m rustc-demangle v0.1.23
[0m[0m[1m[32m Compiling[0m base64 v0.21.2
[0m[0m[1m[32m Compiling[0m num_cpus v1.15.0
[0m[0m[1m[32m Compiling[0m getrandom v0.2.9
[0m[0m[1m[32m Compiling[0m dirs-sys-next v0.1.2
[0m[0m[1m[32m Compiling[0m regex v1.8.3
[0m[0m[1m[32m Compiling[0m rand_core v0.6.4
[0m[0m[1m[32m Compiling[0m directories-next v2.0.0
[0m[0m[1m[32m Compiling[0m wasmtime-jit-icache-coherence v11.0.0 (/artifact/wasmtime/crates/jit-icache-coherence)
[0m[0m[1m[32m Compiling[0m bitflags v2.3.1
[0m[0m[1m[32m Compiling[0m url v2.3.1
[0m[0m[1m[32m Compiling[0m rand_chacha v0.3.1
[0m[0m[1m[32m Compiling[0m tracing-core v0.1.31
[0m[0m[1m[32m Compiling[0m quick-error v1.2.3
[0m[0m[1m[32m Compiling[0m zstd-sys v2.0.8+zstd.1.5.5
[0m[0m[1m[32m Compiling[0m wasmtime-fiber v11.0.0 (/artifact/wasmtime/crates/fiber)
[0m[0m[1m[32m Compiling[0m wasmtime-fibre v11.0.0 (/artifact/wasmtime/crates/fibre)
[0m[0m[1m[32m Compiling[0m ittapi-sys v0.3.3
[0m[0m[1m[32m Compiling[0m wasmtime-runtime v11.0.0 (/artifact/wasmtime/crates/runtime)
[0m[0m[1m[32m Compiling[0m psm v0.1.21
[0m[0m[1m[32m Compiling[0m rand v0.8.5
[0m[0m[1m[32m Compiling[0m io-extras v0.17.4
[0m[0m[1m[32m Compiling[0m rayon v1.7.0
[0m[0m[1m[32m Compiling[0m humantime v1.3.0
[0m[0m[1m[32m Compiling[0m crypto-common v0.1.6
[0m[0m[1m[32m Compiling[0m block-buffer v0.10.4
[0m[0m[1m[32m Compiling[0m digest v0.10.7
[0m[0m[1m[32m Compiling[0m dirs-sys v0.3.7
[0m[0m[1m[32m Compiling[0m ambient-authority v0.0.2
[0m[0m[1m[32m Compiling[0m cap-primitives v1.0.15
[0m[0m[1m[32m Compiling[0m ring v0.16.20
[0m[0m[1m[32m Compiling[0m sha2 v0.10.6
[0m[0m[1m[32m Compiling[0m dirs v4.0.0
[0m[0m[1m[32m Compiling[0m wast v35.0.2
[0m[0m[1m[32m Compiling[0m bytes v1.4.0
[0m[0m[1m[32m Compiling[0m maybe-owned v0.3.4
[0m[0m[1m[32m Compiling[0m futures-core v0.3.28
[0m[0m[1m[32m Compiling[0m ipnet v2.7.2
[0m[0m[1m[32m Compiling[0m shellexpand v2.1.2
[0m[0m[1m[32m Compiling[0m cap-std v1.0.15
[0m[0m[1m[32m Compiling[0m atty v0.2.14
[0m[0m[1m[32m Compiling[0m tokio v1.28.2
[0m[0m[1m[32m Compiling[0m proc-macro-error-attr v1.0.4
[0m[0m[1m[32m Compiling[0m untrusted v0.7.1
[0m[0m[1m[32m Compiling[0m spin v0.5.2
[0m[0m[1m[32m Compiling[0m futures-task v0.3.28
[0m[0m[1m[32m Compiling[0m env_logger v0.7.1
[0m[0m[1m[32m Compiling[0m mio v0.8.8
[0m[0m[1m[32m Compiling[0m socket2 v0.4.9
[0m[0m[1m[32m Compiling[0m proc-macro-error v1.0.4
[0m[0m[1m[32m Compiling[0m futures-util v0.3.28
[0m[0m[1m[32m Compiling[0m wasi-common v11.0.0 (/artifact/wasmtime/crates/wasi-common)
[0m[0m[1m[32m Compiling[0m fnv v1.0.7
[0m[0m[1m[32m Compiling[0m pretty_env_logger v0.4.0
[0m[0m[1m[32m Compiling[0m http v0.2.9
[0m[0m[1m[32m Compiling[0m openvino-finder v0.5.0
[0m[0m[1m[32m Compiling[0m slab v0.4.8
[0m[0m[1m[32m Compiling[0m cap-fs-ext v1.0.15
[0m[0m[1m[32m Compiling[0m same-file v1.0.6
[0m[0m[1m[32m Compiling[0m system-interface v0.25.7
[0m[0m[1m[32m Compiling[0m pin-utils v0.1.0
[0m[0m[1m[32m Compiling[0m cap-rand v1.0.15
[0m[0m[1m[32m Compiling[0m walkdir v2.3.3
[0m[0m[1m[32m Compiling[0m capstone-sys v0.13.0
[0m[0m[1m[32m Compiling[0m rustls v0.21.1
[0m[0m[1m[32m Compiling[0m futures-channel v0.3.28
[0m[0m[1m[32m Compiling[0m httparse v1.8.0
[0m[0m[1m[32m Compiling[0m camino v1.1.4
[0m[0m[1m[32m Compiling[0m futures-sink v0.3.28
[0m[0m[1m[32m Compiling[0m os_str_bytes v6.5.0
[0m[0m[1m[32m Compiling[0m wasm-encoder v0.29.0
[0m[0m[1m[32m Compiling[0m libloading v0.7.4
[0m[0m[1m[32m Compiling[0m try-lock v0.2.4
[0m[0m[1m[32m Compiling[0m wasmtime-wasi v11.0.0 (/artifact/wasmtime/crates/wasi)
[0m[0m[1m[32m Compiling[0m strsim v0.10.0
[0m[0m[1m[32m Compiling[0m cranelift-codegen v0.98.0 (/artifact/wasmtime/cranelift/codegen)
[0m[0m[1m[32m Compiling[0m textwrap v0.16.0
[0m[0m[1m[32m Compiling[0m want v0.3.0
[0m[0m[1m[32m Compiling[0m clap_lex v0.2.4
[0m[0m[1m[32m Compiling[0m wasmtime-wasi-nn v11.0.0 (/artifact/wasmtime/crates/wasi-nn)
[0m[0m[1m[32m Compiling[0m num-traits v0.2.15
[0m[0m[1m[32m Compiling[0m httpdate v1.0.2
[0m[0m[1m[32m Compiling[0m wasmtime-cli v11.0.0 (/artifact/wasmtime)
[0m[0m[1m[32m Compiling[0m http-body v1.0.0-rc.2
[0m[0m[1m[32m Compiling[0m ciborium-io v0.2.1
[0m[0m[1m[32m Compiling[0m half v1.8.2
[0m[0m[1m[32m Compiling[0m plotters-backend v0.3.4
[0m[0m[1m[32m Compiling[0m listenfd v1.0.1
[0m[0m[1m[32m Compiling[0m cast v0.3.0
[0m[0m[1m[32m Compiling[0m lazy_static v1.4.0
[0m[0m[1m[32m Compiling[0m oorandom v11.1.3
[0m[0m[1m[32m Compiling[0m fastrand v1.9.0
[0m[0m[1m[32m Compiling[0m anes v0.1.6
[0m[0m[1m[32m Compiling[0m plotters-svg v0.3.3
[0m[0m[1m[32m Compiling[0m ciborium-ll v0.2.1
[0m[0m[1m[32m Compiling[0m criterion-plot v0.5.0
[0m[0m[1m[32m Compiling[0m regex-automata v0.1.10
[0m[0m[1m[32m Compiling[0m openvino-sys v0.5.0
[0m[0m[1m[32m Compiling[0m bstr v0.2.17
[0m[0m[1m[32m Compiling[0m is-terminal v0.4.7
[0m[0m[1m[32m Compiling[0m env_logger v0.10.0
[0m[0m[1m[32m Compiling[0m memfd v0.6.3
[0m[0m[1m[32m Compiling[0m ittapi v0.3.3
[0m[0m[1m[32m Compiling[0m fs-set-times v0.19.1
[0m[0m[1m[32m Compiling[0m tempfile v3.5.0
[0m[0m[1m[32m Compiling[0m file-per-thread-logger v0.2.0
[0m[0m[1m[32m Compiling[0m clap_derive v3.2.25
[0m[0m[1m[32m Compiling[0m component-macro-test v0.0.0 (/artifact/wasmtime/crates/misc/component-macro-test)
[0m[0m[1m[32m Compiling[0m serde_derive v1.0.163
[0m[0m[1m[32m Compiling[0m thiserror-impl v1.0.40
[0m[0m[1m[32m Compiling[0m derive_arbitrary v1.3.1
[0m[0m[1m[32m Compiling[0m tracing-attributes v0.1.24
[0m[0m[1m[32m Compiling[0m tokio-macros v2.1.0
[0m[0m[1m[32m Compiling[0m http-body-util v0.1.0-rc.2
[0m[0m[1m[32m Compiling[0m cap-time-ext v1.0.15
[0m[0m[1m[32m Compiling[0m plotters v0.3.4
[0m[0m[1m[32m Compiling[0m rustls-webpki v0.100.1
[0m[0m[1m[32m Compiling[0m sct v0.7.0
[0m[0m[1m[32m Compiling[0m webpki-roots v0.23.1
[0m[0m[1m[32m Compiling[0m arbitrary v1.3.0
[0m[0m[1m[32m Compiling[0m wat v1.0.66 (/artifact/wasm-tools/crates/wat)
[0m[0m[1m[32m Compiling[0m tracing v0.1.37
[0m[0m[1m[32m Compiling[0m witx v0.9.1 (/artifact/wasmtime/crates/wasi-common/WASI/tools/witx)
[0m[0m[1m[32m Compiling[0m openvino v0.5.0
[0m[0m[1m[32m Compiling[0m filecheck v0.5.0
[0m[0m[1m[32m Compiling[0m cranelift-control v0.98.0 (/artifact/wasmtime/cranelift/control)
[0m[0m[1m[32m Compiling[0m wiggle-generate v11.0.0 (/artifact/wasmtime/crates/wiggle/generate)
[0m[0m[1m[32m Compiling[0m zstd v0.11.2+zstd.1.5.2
[0m[0m[1m[32m Compiling[0m wiggle-macro v11.0.0 (/artifact/wasmtime/crates/wiggle/macro)
[0m[0m[1m[32m Compiling[0m tokio-util v0.7.8
[0m[0m[1m[32m Compiling[0m tokio-rustls v0.24.0
[0m[0m[1m[32m Compiling[0m cranelift-entity v0.98.0 (/artifact/wasmtime/cranelift/entity)
[0m[0m[1m[32m Compiling[0m bincode v1.3.3
[0m[0m[1m[32m Compiling[0m toml v0.5.11
[0m[0m[1m[32m Compiling[0m ciborium v0.2.1
[0m[0m[1m[32m Compiling[0m cargo-platform v0.1.2
[0m[0m[1m[32m Compiling[0m wit-parser v0.8.0
[0m[0m[1m[32m Compiling[0m wasmparser v0.107.0
[0m[0m[1m[32m Compiling[0m cranelift-bforest v0.98.0 (/artifact/wasmtime/cranelift/bforest)
[0m[0m[1m[32m Compiling[0m gimli v0.27.2
[0m[0m[1m[32m Compiling[0m wasmparser v0.107.0 (/artifact/wasm-tools/crates/wasmparser)
[0m[0m[1m[32m Compiling[0m object v0.30.3
[0m[0m[1m[32m Compiling[0m clap v3.2.25
[0m[0m[1m[32m Compiling[0m h2 v0.3.19
[0m[0m[1m[32m Compiling[0m cargo_metadata v0.15.4
[0m[0m[1m[32m Compiling[0m fxprof-processed-profile v0.6.0
[0m[0m[1m[32m Compiling[0m tinytemplate v1.2.1
[0m[0m[1m[32m Compiling[0m wasmtime-wit-bindgen v11.0.0 (/artifact/wasmtime/crates/wit-bindgen)
[0m[0m[1m[32m Compiling[0m capstone v0.9.0
[0m[0m[1m[32m Compiling[0m wasmtime-component-macro v11.0.0 (/artifact/wasmtime/crates/component-macro)
[0m[0m[1m[32m Compiling[0m criterion v0.4.0
[0m[0m[1m[32m Compiling[0m wasm-metadata v0.8.0
[0m[0m[1m[32m Compiling[0m wit-component v0.11.0
[0m[0m[1m[32m Compiling[0m wasmtime-jit-debug v11.0.0 (/artifact/wasmtime/crates/jit-debug)
[0m[0m[1m[32m Compiling[0m addr2line v0.19.0
[0m[0m[1m[32m Compiling[0m hyper v1.0.0-rc.3
[0m[0m[1m[32m Compiling[0m wasmtime-types v11.0.0 (/artifact/wasmtime/crates/types)
[0m[0m[1m[32m Compiling[0m wasmprinter v0.2.59 (/artifact/wasm-tools/crates/wasmprinter)
[0m[0m[1m[32m Compiling[0m wasmtime-environ v11.0.0 (/artifact/wasmtime/crates/environ)
[0m[0m[1m[32m Compiling[0m test-programs v0.0.0 (/artifact/wasmtime/crates/test-programs)
[0m[0m[1m[32m Compiling[0m wasmtime-jit v11.0.0 (/artifact/wasmtime/crates/jit)
[0m[0m[1m[32m Compiling[0m cranelift-native v0.98.0 (/artifact/wasmtime/cranelift/native)
[0m[0m[1m[32m Compiling[0m cranelift-frontend v0.98.0 (/artifact/wasmtime/cranelift/frontend)
[0m[0m[1m[32m Compiling[0m wasmtime-cranelift-shared v11.0.0 (/artifact/wasmtime/crates/cranelift-shared)
[0m[0m[1m[32m Compiling[0m cranelift-wasm v0.98.0 (/artifact/wasmtime/cranelift/wasm)
[0m[0m[1m[32m Compiling[0m wasmtime-cranelift v11.0.0 (/artifact/wasmtime/crates/cranelift)
[0m[0m[1m[32m Compiling[0m wasmtime-winch v11.0.0 (/artifact/wasmtime/crates/winch)
[0m[0m[1m[32m Compiling[0m wasmtime v11.0.0 (/artifact/wasmtime/crates/wasmtime)
[0m[0m[1m[32m Compiling[0m wiggle v11.0.0 (/artifact/wasmtime/crates/wiggle)
[0m[0m[1m[32m Compiling[0m wasmtime-wasi-http v11.0.0 (/artifact/wasmtime/crates/wasi-http)
[0m[0m[1m[32m Compiling[0m wasmtime-wast v11.0.0 (/artifact/wasmtime/crates/wast)
[0m[0m[1m[32m Compiling[0m wasmtime-explorer v11.0.0 (/artifact/wasmtime/crates/explorer)
[0m[0m[1m[32m Compiling[0m wasmtime-cli-flags v11.0.0 (/artifact/wasmtime/crates/cli-flags)
[0m[0m[1m[32m Compiling[0m component-test-util v0.0.0 (/artifact/wasmtime/crates/misc/component-test-util)
[0m[0m[1m[32m Compiling[0m wasi-cap-std-sync v11.0.0 (/artifact/wasmtime/crates/wasi-common/cap-std-sync)
[0m[0m[1m[32m Compiling[0m wasmtime-wasi-threads v11.0.0 (/artifact/wasmtime/crates/wasi-threads)
[0m[0m[1m[32m Finished[0m test [unoptimized + debuginfo] target(s) in 1m 05s
[0m[0m[1m[32m Running[0m unittests src/lib.rs (target/debug/deps/wasmtime_cli-90b9307444444916)
running 4 tests
test commands::compile::test::test_unsupported_flags_compile ... [32mok(B[m
test commands::compile::test::test_x64_flags_compile ... [32mok(B[m
test commands::compile::test::test_successful_compile ... [32mok(B[m
test commands::compile::test::test_x64_presets_compile ... [32mok(B[m
test result: [32mok(B[m. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s
[0m[0m[1m[32m Running[0m unittests src/bin/wasmtime.rs (target/debug/deps/wasmtime-5718aad3ac1fa506)
running 0 tests
test result: [32mok(B[m. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[0m[0m[1m[32m Running[0m tests/all/main.rs (target/debug/deps/all-1751e3aeeb003cad)
running 1061 tests
test async_functions::async_host_func_with_pooling_stacks ... [32mok(B[m
test async_functions::smoke ... [32mok(B[m
test async_functions::smoke_host_func ... [32mok(B[m
test async_functions::async_with_pooling_stacks ... [32mok(B[m
test async_functions::cancel_during_run ... [32mok(B[m
test async_functions::smoke_host_func_with_suspension ... [32mok(B[m
test async_functions::smoke_with_suspension ... [32mok(B[m
test call_hook::call_wrapped_func ... [32mok(B[m
test cli_tests::command_invoke ... [32mok(B[m
test cli_tests::exit125_wasi_snapshot0 ... [32mok(B[m
test cli_tests::exit125_wasi_snapshot1 ... [32mok(B[m
test cli_tests::exit126_wasi_snapshot0 ... [32mok(B[m
test call_hook::call_wrapped_async_func ... [32mok(B[m
test async_functions::resume_separate_thread3 ... [32mok(B[m
test cli_tests::exit126_wasi_snapshot1 ... [32mok(B[m
test async_functions::resume_separate_thread ... [32mok(B[m
test cli_tests::exit2_wasi_snapshot0 ... [32mok(B[m
test call_hook::instantiate_async ... [32mok(B[m
test call_hook::instantiate ... [32mok(B[m
test call_hook::recursion ... [32mok(B[m
test call_hook::trapping ... [32mok(B[m
test async_functions::suspend_while_suspending ... [32mok(B[m
test call_hook::call_linked_func ... [32mok(B[m
test call_hook::basic_async_hook ... [32mok(B[m
test async_functions::recursive_call ... [32mok(B[m
test async_functions::fuel_eventually_finishes ... [32mok(B[m
test call_hook::timeout_async_hook ... [32mok(B[m
test async_functions::resume_separate_thread2 ... [32mok(B[m
test async_functions::linker_module_reactor ... [32mok(B[m
test call_hook::call_linked_func_async ... [32mok(B[m
test call_hook::drop_suspended_async_hook ... [32mok(B[m
test async_functions::iloop_with_fuel ... [32mok(B[m
test cli_tests::exit2_wasi_snapshot1 ... [32mok(B[m
test async_functions::gc_preserves_externref_on_historical_async_stacks ... [32mok(B[m
test async_functions::non_stacky_async_activations ... [32mok(B[m
test component_model::aot::bare_bones ... [32mok(B[m
test component_model::aot::cannot_serialize_exported_module ... [32mok(B[m
test async_functions::linker_module_command ... [32mok(B[m
test component_model::aot::deserialize_from_serialized ... [32mok(B[m
test cli_tests::exit_with_saved_fprs ... [32mok(B[m
test cli_tests::greeter ... [32mok(B[m
test component_model::aot::module_component_mismatch ... [32mok(B[m
test cli_tests::reactor_invoke ... [32mok(B[m
test cli_tests::minimal_reactor ... [32mok(B[m
test cli_tests::greeter_preload_command ... [32mok(B[m
test component_model::aot::mildly_more_interesting ... [32mok(B[m
test cli_tests::run_coredump_smoketest ... [32mok(B[m
test cli_tests::hello_wasi_snapshot1 ... [32mok(B[m
test cli_tests::hello_wasi_snapshot0_from_stdin ... [32mok(B[m
Error: failed to create mmap for file: /dev/stdin
Caused by:
0: mmap failed to allocate 0x0 bytes
test cli_tests::hello_wasi_snapshot0 ... 1: Invalid argument (os error 22)
[32mok(B[m
test cli_tests::run_simple_with_wasi_threads ... [32mok(B[m
test cli_tests::greeter_preload_callable_command ... [32mok(B[m
test cli_tests::run_wasmtime_simple ... [32mok(B[m
test cli_tests::run_cwasm_from_stdin ... [32mok(B[m
test cli_tests::minimal_command ... [32mok(B[m
test cli_tests::run_threads ... [32mok(B[m
test cli_tests::timeout_in_start ... [32mok(B[m
test component_model::bindgen::no_imports::run ... [32mok(B[m
test cli_tests::run_wasmtime_simple_fail_no_args ... [32mok(B[m
test cli_tests::timeout_in_invoke ... [32mok(B[m
test cli_tests::run_wasmtime_unreachable_wat ... [32mok(B[m
test component_model::bindgen::one_import::run ... [32mok(B[m
test cli_tests::run_cwasm ... [32mok(B[m
test component_model::dynamic::everything ... [32mok(B[m
test component_model::func::errors_that_poison_instance ... [32mok(B[m
test component_model::dynamic::strings ... [32mok(B[m
test component_model::func::bools ... [32mok(B[m
test component_model::func::drop_component_still_works ... [32mok(B[m
test component_model::bindgen::results::enum_error::run ... [32mok(B[m
test component_model::func::chars ... [32mok(B[m
test component_model::dynamic::records ... [32mok(B[m
test component_model::components_importing_modules ... [32mok(B[m
test component_model::dynamic::flags ... [32mok(B[m
test component_model::func::char_bool_memory ... [32mok(B[m
test component_model::bindgen::ownership::borrowing_no_duplication ... [32mok(B[m
test component_model::bindgen::results::record_error::run ... [32mok(B[m
test component_model::bindgen::ownership::borrowing_with_duplication ... [32mok(B[m
test component_model::bindgen::results::with_remapping::run ... [32mok(B[m
test component_model::dynamic::lists ... [32mok(B[m
test component_model::bindgen::results::string_error::run ... [32mok(B[m
test component_model::bindgen::ownership::owning ... [32mok(B[m
test component_model::bindgen::results::variant_error::run ... [32mok(B[m
test component_model::bindgen::results::empty_error::run ... [32mok(B[m
test component_model::func::tuples ... [32mok(B[m
test component_model::func::type_layers ... [32mok(B[m
test component_model::func::string_list_oob ... [32mok(B[m
test component_model::func::run_export_with_internal_adapter ... [32mok(B[m
test component_model::import::attempt_to_reenter_during_host ... [32mok(B[m
test component_model::dynamic::variants ... [32mok(B[m
test component_model::func::integers ... [32mok(B[m
test component_model::func::typecheck ... [32mok(B[m
test component_model::func::strings ... [32mok(B[m
test component_model::import::bad_import_alignment ... [32mok(B[m
test component_model::instance::instance_exports ... [32mok(B[m
test cli_tests::run_wasmtime_simple_wat ... [32mok(B[m
test component_model::import::no_actual_wasm_code ... [32mok(B[m
test component_model::func::lower_then_lift ... [32mok(B[m
test component_model::import::can_compile ... [32mok(B[m
test component_model::func::tuple_result ... [32mok(B[m
test component_model::nested::nested_many_instantiations ... [32mok(B[m
test component_model::func::thunks ... [32mok(B[m
test component_model::func::many_parameters ... [32mok(B[m
test component_model::func::floats ... [32mok(B[m
test component_model::nested::thread_options_through_inner ... [32mok(B[m
test component_model::func::raw_slice_of_various_types ... [32mok(B[m
test component_model::import::stack_and_heap_args_and_rets ... [32mok(B[m
test component_model::func::fancy_list ... [32mok(B[m
test component_model::import::simple ... [32mok(B[m
test component_model::func::invalid_alignment ... [32mok(B[m
test component_model::func::expected ... [32mok(B[m
test component_model::func::some_traps ... [32mok(B[m
test component_model::func::option ... [32mok(B[m
test component_model::import::attempt_to_leave_during_malloc ... [32mok(B[m
test async_functions::recursive_async ... [32mok(B[m
test component_model::nested::top_level_instance_two_level ... [32mok(B[m
test component_model::post_return::post_return_string ... [32mok(B[m
test debug::gdb::test_debug_dwarf_gdb ... [33mignored(B[m
test debug::lldb::test_debug_dwarf5_lldb ... [33mignored(B[m
test debug::lldb::test_debug_dwarf_lldb ... [33mignored(B[m
test debug::lldb::test_debug_dwarf_ref ... [33mignored(B[m
test debug::simulate::test_debug_dwarf_simulate_simple_x86_64 ... [33mignored(B[m
test debug::simulate::test_debug_dwarf_simulate_with_imports_x86_64 ... [33mignored(B[m
test debug::simulate::test_debug_dwarf_simulate_with_invalid_name_x86_64 ... [33mignored(B[m
test debug::translate::test_debug_dwarf5_translate ... [33mignored(B[m
test debug::translate::test_debug_dwarf_translate ... [33mignored(B[m
test debug::translate::test_debug_dwarf_translate_dead_code ... [33mignored(B[m
test component_model::post_return::invalid_api ... [32mok(B[m
test component_model::r#async::poll_through_wasm_activation ... [32mok(B[m
test epoch_interruption::epoch_callback_continue ... [32mok(B[m
test component_model::r#async::smoke_func_wrap ... [32mok(B[m
test epoch_interruption::epoch_callback_trap ... [32mok(B[m
test custom_signal_handler::tests::test_custom_signal_handler_single_instance ... [32mok(B[m
test epoch_interruption::epoch_callback_yield ... [32mok(B[m
test epoch_interruption::drop_future_on_epoch_yield ... [32mok(B[m
test custom_signal_handler::tests::test_custom_signal_handler_single_instance_hostcall ... [32mok(B[m
test custom_signal_handler::tests::test_custom_signal_handler_multiple_instances ... [32mok(B[m
test component_model::r#async::resume_separate_thread ... [32mok(B[m
test externals::bad_globals ... [32mok(B[m
test externals::bad_tables_i32 - should panic ... [32mok(B[m
test externals::bad_tables ... [32mok(B[m
test externals::create_get_set_externref_tables_via_api ... [32mok(B[m
test externals::create_get_set_funcref_tables_via_api ... [32mok(B[m
test externals::fill_externref_tables_via_api ... [32mok(B[m
test custom_signal_handler::tests::test_custom_signal_handler_instance_calling_another_instance ... [32mok(B[m
test externals::get_set_externref_globals_via_api ... [32mok(B[m
test externals::fill_funcref_tables_via_api ... [32mok(B[m
test externals::get_set_funcref_globals_via_api ... [32mok(B[m
test externals::grow_externref_tables_via_api ... [32mok(B[m
test externals::grow_funcref_tables_via_api ... [32mok(B[m
test externals::read_write_memory_via_api ... [32mok(B[m
test epoch_interruption::epoch_yield_immediate ... [32mok(B[m
test externals::cross_store ... [32mok(B[m
test fuel::manual_edge_cases ... [32mok(B[m
test fuel::manual_fuel ... [32mok(B[m
test epoch_interruption::epoch_yield_at_loop_header ... [32mok(B[m
test epoch_interruption::epoch_yield_at_func_entry ... [32mok(B[m
test epoch_interruption::epoch_yield_only_once ... [32mok(B[m
test func::call_array_to_native ... [32mok(B[m
test fuel::host_function_consumes_all ... [32mok(B[m
test func::call_array_to_array ... [32mok(B[m
test fuel::unconditionally_trapping_memory_accesses_save_fuel_before_trapping ... [32mok(B[m
test func::call_indirect_native_from_exported_global ... [32mok(B[m
test func::call_array_to_wasm ... [32mok(B[m
test func::call_indirect_native_from_exported_table ... [32mok(B[m
test func::call_native_to_native ... [32mok(B[m
test func::call_indirect_native_from_wasm_import_func_returns_funcref ... [32mok(B[m
test func::call_indirect_native_from_wasm_import_table ... [32mok(B[m
test func::call_indirect_native_from_wasm_import_global ... [32mok(B[m
test func::call_native_to_array ... [32mok(B[m
test func::call_wrapped_func ... [32mok(B[m
test func::call_wasm_to_native ... [32mok(B[m
test func::call_wasm_to_wasm ... [32mok(B[m
test func::call_native_to_wasm ... [32mok(B[m
test func::dtor_runs ... [32mok(B[m
test fuel::iloop ... [32mok(B[m
test component_model::r#async::smoke ... [32mok(B[m
test component_model::post_return::trap_in_post_return_poisons_instance ... [32mok(B[m
test func::func_write_nothing ... [32mok(B[m
test func::func_constructors ... [32mok(B[m
test component_model::post_return::invoke_post_return ... [32mok(B[m
test func::get_from_wrapper ... [32mok(B[m
test component_model::post_return::post_return_all_types ... [32mok(B[m
test func::calls_with_funcref_and_externref ... [32mok(B[m
test func::get_from_module ... [32mok(B[m
test func::dtor_delayed ... [32mok(B[m
test func::signatures_match ... [32mok(B[m
test func::pass_cross_store_arg ... [32mok(B[m
test func::externref_signature_no_reference_types ... [32mok(B[m
test func::trap_smoke ... [32mok(B[m
test func::call_wasm_to_array ... [32mok(B[m
test func::trampoline_for_declared_elem ... [32mok(B[m
test func::return_cross_store_value ... [32mok(B[m
test func::caller_memory ... [32mok(B[m
test func::trap_import ... [32mok(B[m
test func::import_works ... [32mok(B[m
test func::get_from_signature ... [32mok(B[m
test funcref::wrong_store ... [32mok(B[m
test func::trap_doesnt_leak ... [32mok(B[m
test epoch_interruption::epoch_interrupt_infinite_loop ... [32mok(B[m
test gc::drop_externref_via_table_set ... [32mok(B[m
test epoch_interruption::epoch_interrupt_function_entries ... [32mok(B[m
test func::wasm_ty_roundtrip ... [32mok(B[m
test funcref::func_new_returns_wrong_store ... [32mok(B[m
test gc::global_init_no_leak ... [32mok(B[m
test funcref::receive_null_funcref_from_wasm ... [32mok(B[m
test func::typed_multiple_results ... [32mok(B[m
test func::typed_funcs_count_params_correctly_in_error_messages ... [32mok(B[m
test globals::mutability ... [32mok(B[m
test globals::smoke ... [32mok(B[m
test funcref::pass_funcref_in_and_out_of_wasm ... [32mok(B[m
test globals::use_after_drop ... [32mok(B[m
test gc::smoke_test_gc_epochs ... [32mok(B[m
test gc::smoke_test_gc ... [32mok(B[m
test host_funcs::async_required - should panic ... [32mok(B[m
test component_model::macros::union_derive ... [32mok(B[m
test globals::v128 ... [32mok(B[m
test gc::gee_i_sure_hope_refcounting_is_atomic ... [32mok(B[m
test host_funcs::call_wrapped_func ... [32mok(B[m
test host_funcs::drop_func ... [32mok(B[m
test gc::global_drops_externref ... [32mok(B[m
test host_funcs::drop_delayed ... [32mok(B[m
test host_funcs::signatures_match ... [32mok(B[m
test host_funcs::store_with_context ... [32mok(B[m
test gc::wasm_dropping_refs ... [32mok(B[m
test func::trampolines_always_valid ... [32mok(B[m
test host_funcs::call_via_funcref ... [32mok(B[m
test gc::no_gc_middle_of_args ... [32mok(B[m
test host_funcs::func_return_nothing ... [32mok(B[m
test host_funcs::trap_smoke ... [32mok(B[m
test host_funcs::trap_import ... [32mok(B[m
test host_funcs::wrap_func ... [32mok(B[m
test host_funcs::import_works ... [32mok(B[m
test host_funcs::new_from_signature ... [32mok(B[m
test import_calling_export::test_returns_incorrect_type ... [32mok(B[m
test instance::initializes_linear_memory ... [32mok(B[m
test import_indexes::same_import_names_still_distinct ... [32mok(B[m
test instance::wrong_import_numbers ... [32mok(B[m
test host_funcs::call_import_many_args ... [32mok(B[m
test iloop::loops_interruptable ... [32mok(B[m
test gc::table_drops_externref ... [32mok(B[m
test invoke_func_via_table::test_invoke_func_via_table ... [32mok(B[m
test host_funcs::call_wasm_many_args ... [32mok(B[m
test component_model::macros::enum_derive ... [32mok(B[m
test host_funcs::wasi_imports ... [32mok(B[m
test iloop::functions_interruptable ... [32mok(B[m
test limits::panic_in_async_table_limiter - should panic ... [32mok(B[m
test instance::linear_memory_limits ... [32mok(B[m
test limits::panic_in_memory_limiter - should panic ... [32mok(B[m
test limits::panic_in_table_limiter - should panic ... [32mok(B[m
test limits::custom_limiter_detect_grow_failure ... [32mok(B[m
test limits::growth_trap ... [32mok(B[m
test limits::panic_in_async_memory_limiter - should panic ... [32mok(B[m
test import_calling_export::test_import_calling_export ... [32mok(B[m
test limits::panic_in_memory_limiter_wasm_stack - should panic ... [32mok(B[m
test limits::test_custom_table_limiter ... [32mok(B[m
test limits::panic_in_async_memory_limiter_wasm_stack - should panic ... [32mok(B[m
test component_model::macros::variant_derive ... [32mok(B[m
test limits::test_custom_memory_limiter ... [32mok(B[m
test limits::custom_limiter_async_detect_grow_failure ... [32mok(B[m
test linker::alias_one ... [32mok(B[m
test limits::test_initial_memory_limits_exceeded ... [32mok(B[m
test linker::funcs_live_on_to_fight_another_day ... [32mok(B[m
test limits::test_initial_table_limits_exceeded ... [32mok(B[m
test iloop::loop_interrupt_from_afar ... [32mok(B[m
test limits::test_limits_memory_only ... [32mok(B[m
test limits::test_pooling_allocator_initial_limits_exceeded ... [32mok(B[m
test linker::link_twice_bad ... [32mok(B[m
test limits::test_limits_table_only ... [32mok(B[m
test limits::test_limits ... [32mok(B[m
test linker::link_undefined ... [32mok(B[m
test fuel::run ... [32mok(B[m
test limits::test_limits_async ... [32mok(B[m
test linker::instance_pre ... [32mok(B[m
test limits::test_custom_memory_limiter_async ... [32mok(B[m
test linker::get_host_function ... [32mok(B[m
test iloop::function_interrupt_from_afar ... [32mok(B[m
test memory::massive_64_bit_still_limited ... [32mok(B[m
test memory::memory64_maximum_minimum ... [32mok(B[m
test linker::test_default_value_unknown_import ... [32mok(B[m
test linker::function_interposition ... [32mok(B[m
test memory::shared_memory_basics ... [32mok(B[m
test linker::test_unknown_import_error ... [32mok(B[m
test memory::dynamic_extra_growth_unchanged_pointer ... [32mok(B[m
test memory::static_forced_max ... [32mok(B[m
test memory_creator::not_for_windows::host_memory ... [32mok(B[m
test linker::no_leak_with_imports ... [32mok(B[m
test linker::allow_unknown_exports ... [32mok(B[m
test linker::no_leak ... [32mok(B[m
test module::checks_incompatible_target ... [32mok(B[m
test module::caches_across_engines ... [32mok(B[m
test memory::tiny_static_heap ... [32mok(B[m
test module::serialize_not_overly_massive ... [32mok(B[m
test memory::shared_memory_wait_notify ... [32mok(B[m
test module_serialize::deserialize_from_serialized ... [32mok(B[m
test module_serialize::test_module_serialize_fail ... [32mok(B[m
test memory_creator::not_for_windows::host_memory_grow ... [32mok(B[m
test module::aot_compiles ... [32mok(B[m
test module_serialize::test_module_serialize_simple ... [32mok(B[m
test module_serialize::test_version_mismatch ... [32mok(B[m
test module::missing_sse_and_floats_still_works ... [32mok(B[m
test pooling_allocator::drop_externref_global_during_module_init ... [32mok(B[m
test pooling_allocator::instantiation_limit ... [32mok(B[m
test pooling_allocator::instance_too_large ... [32mok(B[m
test pooling_allocator::memory_init ... [32mok(B[m
test name::test_module_name ... [32mok(B[m
test module_serialize::test_deserialize_from_file ... [32mok(B[m
test name::test_module_no_name ... [32mok(B[m
test pooling_allocator::multi_memory_with_imported_memories ... [32mok(B[m
test pooling_allocator::successful_instantiation ... [32mok(B[m
test pooling_allocator::memory_zeroed ... [32mok(B[m
test pooling_allocator::memory_guard_page_trap ... [32mok(B[m
test pooling_allocator::table_zeroed ... [32mok(B[m
test pooling_allocator::memory_limit ... [32mok(B[m
test pooling_allocator::switch_image_and_non_image ... [32mok(B[m
test pooling_allocator::table_limit ... [32mok(B[m
test pooling_allocator::table_init ... [32mok(B[m
test pooling_allocator::dynamic_memory_pooling_allocator ... [32mok(B[m
test pooling_allocator::zero_memory_pages_disallows_oob ... [32mok(B[m
test pooling_allocator::preserve_data_segments ... [32mok(B[m
test store::into_inner ... [32mok(B[m
test table::copy_wrong ... [32mok(B[m
test table::fill_wrong ... [32mok(B[m
test table::get_none ... [32mok(B[m
test table::null_elem_segment_works_with_imported_table ... [32mok(B[m
test threads::test_export_shared_memory ... [32mok(B[m
test memory::guards_present ... [32mok(B[m
test threads::test_import_shared_memory ... [32mok(B[m
test threads::test_instantiate_shared_memory ... [32mok(B[m
test threads::test_memory_size_accessibility ... [32mok(B[m
test threads::test_multi_memory ... [32mok(B[m
test threads::test_probe_shared_memory_size ... [32mok(B[m
test threads::test_sharing_of_shared_memory ... [32mok(B[m
test component_model::strings::ptr_overflow ... [32mok(B[m
test component_model::strings::realloc_oob ... [32mok(B[m
test threads::test_grow_memory_in_multiple_threads ... [32mok(B[m
test stack_overflow::host_always_has_some_stack ... [32mok(B[m
test traps::async_then_sync_trap ... [32mok(B[m
test traps::call_signature_mismatch ... [32mok(B[m
test traps::hint_with_dwarf_info ... [32mok(B[m
test traps::catch_trap_calling_across_stores ... [32mok(B[m
test traps::div_plus_load_reported_right ... [32mok(B[m
test traps::host_return_error_no_backtrace ... [32mok(B[m
test traps::mismatched_arguments ... [32mok(B[m
test traps::multithreaded_traps ... [32mok(B[m
test module::serialize_deterministic ... [32mok(B[m
test traps::no_hint_even_with_dwarf_info ... [32mok(B[m
test traps::dont_see_stale_stack_walking_registers ... [32mok(B[m
test traps::present_after_module_drop ... [32mok(B[m
test traps::rust_catch_panic_import ... [32mok(B[m
test traps::standalone_backtrace ... [32mok(B[m
test traps::rust_panic_import ... [32mok(B[m
test traps::rust_panic_start_function ... [32mok(B[m
test relocs::mixed_forced ... [32mok(B[m
test traps::standalone_backtrace_disabled ... [32mok(B[m
test traps::start_trap_pretty ... [32mok(B[m
test traps::test_anyhow_error_return ... [32mok(B[m
test traps::test_trap_backtrace_disabled ... [32mok(B[m
test traps::same_module_multiple_stores ... [32mok(B[m
test traps::sync_then_async_trap ... [32mok(B[m
test traps::test_trap_return ... [32mok(B[m
test traps::test_trap_return_downcast ... [32mok(B[m
test traps::test_trap_trace ... [32mok(B[m
test traps::trap_display_pretty ... [32mok(B[m
test traps::test_trap_trace_cb ... [32mok(B[m
test traps::test_trap_through_host ... [32mok(B[m
test traps::trap_display_multi_module ... [32mok(B[m
test traps::trap_with_array_to_wasm_stack_args ... [32mok(B[m
test traps::traps_without_address_map ... [32mok(B[m
test traps::trap_start_function_import ... [32mok(B[m
test traps::trap_with_native_to_wasm_stack_args ... [32mok(B[m
test traps::wasm_fault_address_reported_by_default ... [32mok(B[m
test wait_notify::atomic_wait_notify_basic ... [32mok(B[m
test traps::trap_codes ... [32mok(B[m
test wast::Cranelift::misc::call_indirect ... [32mok(B[m
test wast::Cranelift::misc::br_table_fuzzbug ... [32mok(B[m
test traps::test_trap_stack_overflow ... [32mok(B[m
test memory::guards_present_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::aliasing ... [32mok(B[m
test wast::Cranelift::misc::br_table_fuzzbug_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::aliasing_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::adapter ... [32mok(B[m
test wast::Cranelift::misc::component_model::adapter_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::import ... [32mok(B[m
test wast::Cranelift::misc::component_model::import_pooling ... [32mok(B[m
thread 'main' panicked at 'explicit panic', /tmp/.tmp6n8Qyf/input.rs:3:17
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
test wast::Cranelift::misc::call_indirect_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::instance ... [32mok(B[m
test wast::Cranelift::misc::component_model::instance_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::linking ... [32mok(B[m
test wast::Cranelift::misc::component_model::linking_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::modules ... [32mok(B[m
test wast::Cranelift::misc::component_model::modules_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::simple ... [32mok(B[m
test traps::parse_dwarf_info ... [32mok(B[m
test wast::Cranelift::misc::component_model::nested ... [32mok(B[m
test wast::Cranelift::misc::component_model::simple_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::fused ... [32mok(B[m
test wast::Cranelift::misc::component_model::nested_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::types ... [32mok(B[m
test wast::Cranelift::misc::component_model::fused_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::types_pooling ... [32mok(B[m
test wast::Cranelift::misc::component_model::strings ... [32mok(B[m
test wast::Cranelift::misc::control_flow_pooling ... [32mok(B[m
test wast::Cranelift::misc::div_rem ... [32mok(B[m
test wast::Cranelift::misc::component_model::strings_pooling ... [32mok(B[m
test wast::Cranelift::misc::elem_drop ... [32mok(B[m
test wast::Cranelift::misc::elem_ref_null ... [32mok(B[m
test wast::Cranelift::misc::control_flow ... [32mok(B[m
test wast::Cranelift::misc::elem_drop_pooling ... [32mok(B[m
test wast::Cranelift::misc::elem_ref_null_pooling ... [32mok(B[m
test wast::Cranelift::misc::empty ... [32mok(B[m
test wast::Cranelift::misc::div_rem_pooling ... [32mok(B[m
test wait_notify::atomic_wait_timeout_length ... [32mok(B[m
test wast::Cranelift::misc::export_large_signature ... [32mok(B[m