lua-matrix/test/test.lua

11 lines
319 B
Lua
Raw Normal View History

-- test suite (run from parent directory).
2011-03-24 21:18:33 -07:00
local here = arg[0]:gsub('[^/\\]+$', '')
package.path = here .. '../lua/?.lua;' .. package.path
package.path = here .. '../samples/?.lua;' .. package.path
2011-03-24 21:18:33 -07:00
dofile(here .. 'test_complex.lua')
dofile(here .. 'test_matrix.lua')
dofile(here .. 'test_fit.lua')
print 'ALL PASSED'