Skip to content

Commit

Permalink
Macrotest: try output to stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
shmuz committed Feb 1, 2025
1 parent 4ae63dd commit 7831a00
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions plugins/luamacro/macrotest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2265,23 +2265,23 @@ function MT.test_all()
TestArea("Shell", "Run these tests from the Shell area.")
assert(not APanel.Plugin and not PPanel.Plugin, "Run these tests when neither of panels is a plugin panel.")

MT.test_areas()
MT.test_mf()
MT.test_CmdLine()
MT.test_Help()
MT.test_Dlg()
MT.test_Drv()
MT.test_Far()
MT.test_Menu()
MT.test_Mouse()
MT.test_Object()
MT.test_Panel()
MT.test_Plugin()
MT.test_APanel()
MT.test_PPanel()
MT.test_mantis_1722()
MT.test_luafar()
MT.test_coroutine()
io.stdout:write("test_areas\n"); MT.test_areas()
io.stdout:write("test_mf\n"); MT.test_mf()
io.stdout:write("test_CmdLine\n"); MT.test_CmdLine()
io.stdout:write("test_Help\n"); MT.test_Help()
io.stdout:write("test_Dlg\n"); MT.test_Dlg()
io.stdout:write("test_Drv\n"); MT.test_Drv()
io.stdout:write("test_Far\n"); MT.test_Far()
io.stdout:write("test_Menu\n"); MT.test_Menu()
io.stdout:write("test_Mouse\n"); MT.test_Mouse()
io.stdout:write("test_Object\n"); MT.test_Object()
io.stdout:write("test_Panel\n"); MT.test_Panel()
io.stdout:write("test_Plugin\n"); MT.test_Plugin()
io.stdout:write("test_APanel\n"); MT.test_APanel()
io.stdout:write("test_PPanel\n"); MT.test_PPanel()
io.stdout:write("test_mantis_1722\n"); MT.test_mantis_1722()
io.stdout:write("test_luafar\n"); MT.test_luafar()
io.stdout:write("test_coroutine\n"); MT.test_coroutine()
end

return MT

0 comments on commit 7831a00

Please sign in to comment.