aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2011-03-01 21:12:56 +0100
committerBenoit Germain <bnt.germain@gmail.com>2011-03-01 21:12:56 +0100
commite97adefde985e30fe31ffa036c74ffb0ce10ca26 (patch)
tree4465decc5f07e7399f9760d6302dbaf7163120d7 /Makefile
parent974aa4343cf900938b5d357d10798d91faf60f5a (diff)
downloadlanes-e97adefde985e30fe31ffa036c74ffb0ce10ca26.tar.gz
lanes-e97adefde985e30fe31ffa036c74ffb0ce10ca26.tar.bz2
lanes-e97adefde985e30fe31ffa036c74ffb0ce10ca26.zip
* 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().
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f27404a..ddd8675 100644
--- a/Makefile
+++ b/Makefile
@@ -84,6 +84,7 @@ test:
84 $(MAKE) fibonacci 84 $(MAKE) fibonacci
85 $(MAKE) recursive 85 $(MAKE) recursive
86 $(MAKE) func_is_string 86 $(MAKE) func_is_string
87 $(MAKE) atexit
87 88
88basic: tests/basic.lua $(_TARGET_SO) 89basic: tests/basic.lua $(_TARGET_SO)
89 $(_PREFIX) $(LUA) $< 90 $(_PREFIX) $(LUA) $<
@@ -154,6 +155,9 @@ appendud: tests/appendud.lua $(_TARGET_SO)
154func_is_string: tests/func_is_string.lua $(_TARGET_SO) 155func_is_string: tests/func_is_string.lua $(_TARGET_SO)
155 $(_PREFIX) $(LUA) $< 156 $(_PREFIX) $(LUA) $<
156 157
158atexit: tests/atexit.lua $(_TARGET_SO)
159 $(_PREFIX) $(LUA) $<
160
157#--- 161#---
158perftest-plain: tests/perftest.lua $(_TARGET_SO) 162perftest-plain: tests/perftest.lua $(_TARGET_SO)
159 $(MAKE) _perftest ARGS="$< $(N) -plain" 163 $(MAKE) _perftest ARGS="$< $(N) -plain"