summaryrefslogtreecommitdiff
path: root/test/spec/table_grow.txt
Commit message (Collapse)AuthorAgeFilesLines
* Update testsuite (#2495)Keith Winstein2024-10-301-15/+15
| | | | | The memory64 `table.wast` test has started to depend on function-references and gc (which WABT doesn't support yet), so vendor an older version of the test.
* Update testsuite (#2167)Keith Winstein2023-03-131-13/+13
| | | | | WastParser now handles the abbreviated (no tableidx) forms of table.{get,set,size,grow,fill} (needed after https://github.com/WebAssembly/spec/pull/1582).
* update br_table validation rule + enforce module validity in spectest-interp ↵Keith Winstein2022-04-131-1/+1
| | | | (#1895)
* Fix function body start/end locations in wasm-validate (#1842)Sam Clegg2022-03-021-2/+2
| | | | | | | | | | For text validation, this means the error is always correctly reported on the final expression in the function. For binary validation, this means that we report the byte after the last instruction in the function as the failure location. This is in line with other binary validation reports. For example, for `type mismatch in i32.add` we report the validation error at the byte *after* the add instruction.
* Remove check from binary-reader-interp.cc that the validator already ↵Sam Clegg2021-12-131-1/+1
| | | | | | | | | | catches. NFC (#1784) If you leave stuff on the stack at the end of an initializer expression use the same mechanims to report the error as we do for functions etc. In addition, improve such errors so its more obvious what is going on.
* Add error locations to BinaryReaderInterp (#1780)Sam Clegg2021-12-091-7/+7
| | | | I think it was always intended to work this way but was left as a TODO.
* Update testsuite (#1738)Sam Clegg2021-10-181-0/+32
bulk-memory-operations and reference-types were completely removed from the upstream testsuite becuase there were merged into the upstream spec: https://github.com/WebAssembly/testsuite/pull/44 In order to land this I had to disable several spec tests under wasm2c because it lacks support for mutli-table and reference types. I filed #1737 to track this.