diff options
author | Daniel Silverstone <dsilvers@digital-scurf.org> | 2015-10-15 10:24:53 +0200 |
---|---|---|
committer | Daniel Silverstone <dsilvers@digital-scurf.org> | 2015-10-15 10:24:53 +0200 |
commit | 968ec2e65eb4b1abcc4203c32d856c8097a87d1c (patch) | |
tree | 3b91752b9b86c8c19b01067f928596faf30ace3f /Makefile | |
parent | 1d3167b0da37a294298f570500901724fa72be06 (diff) | |
download | supple-968ec2e65eb4b1abcc4203c32d856c8097a87d1c.tar.gz |
Better support testing supple during things like package buildsv1.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -71,7 +71,7 @@ ifeq ($(DEBUG),gdb) GDB := gdb --args endif -LUA := LUA_PATH="$(shell pwd)/lib/?.lua;$(shell pwd)/extras/luacov/src/?.lua;;" LUA_CPATH="$(shell pwd)/lib/?.so;;" $(GDB) $(LUA_INTERP_PATH) +LUA := SUPPLE_TEST_WRAPPER="$(shell pwd)/testwrapper" LUA_PATH="$(shell pwd)/lib/?.lua;$(shell pwd)/extras/luacov/src/?.lua;;" LUA_CPATH="$(shell pwd)/lib/?.so;;" $(GDB) $(LUA_INTERP_PATH) clean: $(RM) luacov.report.out luacov.stats.out @@ -84,7 +84,7 @@ distclean: clean .PHONY: example example: - $(LUA) example/supple-example.lua + $(LUA) example/simple-example.lua .PHONY: test test: build testwrapper |