tests: remove TEST_QUIT_ON_TIMEOUT/quit_awesome_on_timeout (#1288)

It was set to 1 unconditionally anyway, and does not make sense to parametrize after all.
This commit is contained in:
Daniel Hahler 2016-12-25 03:43:03 +01:00 committed by GitHub
parent fd1a622b5f
commit 58067834ad
2 changed files with 1 additions and 8 deletions

View File

@ -3,8 +3,6 @@ local awful = require("awful")
local runner = {
quit_awesome_on_error = os.getenv('TEST_PAUSE_ON_ERRORS') ~= '1',
-- quit-on-timeout defaults to false: indicates some problem with the test itself.
quit_awesome_on_timeout = os.getenv('TEST_QUIT_ON_TIMEOUT') ~= '1',
}
-- Helpers.
@ -81,15 +79,12 @@ runner.run_steps = function(steps)
wait = wait-1
if wait > 0 then
t:again()
return
else
io.stderr:write("Error: timeout waiting for signal in step "
..step_as_string..".\n")
t:stop()
if not runner.quit_awesome_on_timeout then
return
end
end
return
end
-- Remove any clients.
for _,c in ipairs(client.get()) do

View File

@ -43,11 +43,9 @@ fi
if [ "$CI" = true ]; then
HEADLESS=1
TEST_PAUSE_ON_ERRORS=0
TEST_QUIT_ON_TIMEOUT=1
else
HEADLESS=${HEADLESS-0}
TEST_PAUSE_ON_ERRORS=${TEST_PAUSE_ON_ERRORS-0}
TEST_QUIT_ON_TIMEOUT=1
fi
export TEST_PAUSE_ON_ERRORS # Used in tests/_runner.lua.