From e97adefde985e30fe31ffa036c74ffb0ce10ca26 Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Tue, 1 Mar 2011 21:12:56 +0100 Subject: * fixed potential crash at application shutdown when calling lua_close() on a killed thread's VM. * exposed cancel_test() in the lanes to enable manual testing for cancellation requests. * removed kludgy {globals={threadName}} support, replaced with a new function set_debug_threadname(). --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f27404a..ddd8675 100644 --- a/Makefile +++ b/Makefile @@ -84,6 +84,7 @@ test: $(MAKE) fibonacci $(MAKE) recursive $(MAKE) func_is_string + $(MAKE) atexit basic: tests/basic.lua $(_TARGET_SO) $(_PREFIX) $(LUA) $< @@ -154,6 +155,9 @@ appendud: tests/appendud.lua $(_TARGET_SO) func_is_string: tests/func_is_string.lua $(_TARGET_SO) $(_PREFIX) $(LUA) $< +atexit: tests/atexit.lua $(_TARGET_SO) + $(_PREFIX) $(LUA) $< + #--- perftest-plain: tests/perftest.lua $(_TARGET_SO) $(MAKE) _perftest ARGS="$< $(N) -plain" -- cgit v1.2.3-55-g6feb