Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Test largest valid initial size for table32 and table64 in table.wast #104

Merged
merged 2 commits into from
Nov 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test/core/table.wast
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
(module (table 0 1 funcref))
(module (table 1 256 funcref))
(module (table 0 65536 funcref))
(module definition (table 0xffff_ffff funcref))
(module (table 0 0xffff_ffff funcref))

(module (table 1 (ref null func)))
Expand Down Expand Up @@ -54,6 +55,7 @@
(module (table i64 0 65536 funcref))
(module (table i64 0 0xffff_ffff funcref))
(module (table i64 0 0x1_0000_0000 funcref))
(module definition (table i64 0xffff_ffff_ffff_ffff funcref))
(module (table i64 0 0xffff_ffff_ffff_ffff funcref))

(module (table i64 0 funcref) (table i64 0 funcref))
Expand Down
Loading