30 lines
740 B
Go
30 lines
740 B
Go
package spectest
|
|
|
|
import (
|
|
"context"
|
|
"embed"
|
|
"testing"
|
|
|
|
"github.com/tetratelabs/wazero"
|
|
"github.com/tetratelabs/wazero/api"
|
|
"github.com/tetratelabs/wazero/internal/integration_test/spectest"
|
|
"github.com/tetratelabs/wazero/internal/platform"
|
|
)
|
|
|
|
//go:embed testdata/*.wasm
|
|
//go:embed testdata/*.json
|
|
var testcases embed.FS
|
|
|
|
const enabledFeatures = api.CoreFeaturesV2
|
|
|
|
func TestCompiler(t *testing.T) {
|
|
if !platform.CompilerSupported() {
|
|
t.Skip()
|
|
}
|
|
spectest.Run(t, testcases, context.Background(), wazero.NewRuntimeConfigCompiler().WithCoreFeatures(enabledFeatures))
|
|
}
|
|
|
|
func TestInterpreter(t *testing.T) {
|
|
spectest.Run(t, testcases, context.Background(), wazero.NewRuntimeConfigInterpreter().WithCoreFeatures(enabledFeatures))
|
|
}
|