Skip to content

Commit

Permalink
added icesat2 plugin self tests to main test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jpswinski committed Nov 7, 2022
1 parent 19979be commit c9f0fc2
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions scripts/selftests/test_runner.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ local console = require("console")

sys.setlvl(core.LOG, core.INFO)

-- Run Core Unit Tests --
-- Run Core Self Tests --

if __core__ then
runner.script(td .. "tcp_socket.lua")
Expand All @@ -21,32 +21,32 @@ if __core__ then
runner.script(td .. "lua_script.lua")
end

-- Run AWS Unit Tests --
-- Run AWS Self Tests --

if __aws__ then
runner.script(td .. "asset_index.lua")
runner.script(td .. "credential_store.lua")
end

-- Run H5 Unit Tests --
-- Run H5 Self Tests --

if __h5__ then
runner.script(td .. "hdf5_file.lua")
end

-- Run Pistache Unit Tests --
-- Run Pistache Self Tests --

if __pistache__ then
runner.script(td .. "pistache_endpoint.lua")
end

-- Run Raster Unit Tests --
-- Run Raster Self Tests --

if __raster__ then
runner.script(td .. "geojson_raster.lua")
end

-- Run Legacy Unit Tests --
-- Run Legacy Self Tests --

if __legacy__ then
runner.script(td .. "message_queue.lua")
Expand All @@ -60,6 +60,15 @@ if __legacy__ then
runner.script(td .. "limit_dispatch.lua")
end

-- Run ICESat-2 Plugin Self Tests
if __icesat2__ then
runner.script(td .. "plugin_unittest.lua")
runner.script(td .. "atl06_elements.lua")
runner.script(td .. "atl03_indexer.lua")
runner.script(td .. "h5_file.lua")
runner.script(td .. "s3_driver.lua")
end

-- Report Results --

local errors = runner.report()
Expand Down

0 comments on commit c9f0fc2

Please sign in to comment.