Move tests to a sub folder.

This commit is contained in:
slembcke 2019-04-26 10:52:38 -05:00
parent 55c1a1e371
commit 019a9080d6
3 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,6 @@
lua test.lua
echo
lua5.1 test.lua
echo

View File

@ -1,3 +1,5 @@
package.path = package.path .. ";../?.lua"
-- Hack to disable color support
local getenv = os.getenv
os.getenv = function(sym) return (sym == "TERM") and "dumb" or getenv(sym) end