Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Run ¶
Run runs all the test inside the testDataFS file system where all the cases are described via JSON files created from wast2json.
func RunCase ¶ added in v1.5.0
func RunCase(t *testing.T, testDataFS embed.FS, f string, ctx context.Context, config wazero.RuntimeConfig, mandatoryLine, lineBegin, lineEnd int)
RunCase runs the test case described by the given spectest file name (without .wast!) in the testDataFS file system. lineBegin and lineEnd are the line numbers to run. If lineBegin == 0 and lineEnd == math.MaxInt, all the lines are run.
For example, if you want to run memory_grow.wast:66 to 70, you can do:
RunCase(t, testDataFS, "memory_grow", ctx, config, mandatoryLine, 66, 70)
where mandatoryLine is the line number which can be run regardless of the lineBegin and lineEnd. It is useful when we only want to run specific command while running "module" command to instantiate a module. If you don't need it, just pass -1.
Types ¶
This section is empty.