diff --git a/README.md b/README.md index a4792cf..7c9e6e4 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ LYK_VERBOSE=1 sh ./test.sh | vararg.lua | Working | | | cstack.lua | Working | | | locals.lua | Working | | +| coroutine.lua | Working | | | literals.lua | Working | [issue](https://github.com/ykjit/yklua/issues/57) | | db.lua | Failing | [issue](https://github.com/ykjit/yklua/issues/38) | | attrib.lua | Failing | [issue](https://github.com/ykjit/yklua/issues/42) | diff --git a/test.sh b/test.sh index ecb1ded..29e30f4 100644 --- a/test.sh +++ b/test.sh @@ -21,7 +21,7 @@ LUA=../src/lua for serialise in 0 1; do for test in api bwcoercion closure code events \ gengc pm tpack tracegc vararg goto \ - cstack locals literals; do + cstack locals literals coroutine; do echo "### YKD_SERIALISE_COMPILATION=$serialise $test.lua ###" YKD_SERIALISE_COMPILATION=$serialise ${LUA} ${test}.lua done