From 1133575d48958ef6cd483e7ecef0ed1001d3ae57 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Mon, 26 Sep 2016 17:03:05 -0700 Subject: fix most of the interp tests Still need to do imports --- test/interp/basic.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'test/interp/basic.txt') diff --git a/test/interp/basic.txt b/test/interp/basic.txt index 169eb55e..19a07b1b 100644 --- a/test/interp/basic.txt +++ b/test/interp/basic.txt @@ -1,8 +1,7 @@ ;;; TOOL: run-interp (module - (func (result i32) - (return (i32.const 42))) - (export "main" 0)) + (func (export "main") (result i32) + (return (i32.const 42)))) (;; STDOUT ;;; main() => i32:42 ;;; STDOUT ;;) -- cgit v1.2.3