brectanus 8844813c91 Some more updates/tweaks to the regression suite.
Allow the ability to "make test-regression".
2008-05-28 20:31:41 +00:00

15 lines
391 B
Lua

-- Test matching Lua Script to just print debug messages
function main()
m.log(1, "Test message.");
m.log(2, "Test message.");
m.log(3, "Test message.");
m.log(4, "Test message.");
m.log(5, "Test message.");
m.log(6, "Test message.");
m.log(7, "Test message.");
m.log(8, "Test message.");
m.log(9, "Test message.");
return "Lua script matched.";
end