billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=4a005e2551829d177f7403b0e5b1464066764cfb
commit 4a005e2551829d177f7403b0e5b1464066764cfb Author: Boris Faure <bill...@gmail.com> Date: Fri Dec 25 13:46:38 2020 +0100 tests: add missing utils.sh --- tests/utils.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/utils.sh b/tests/utils.sh new file mode 100644 index 0000000..f65f201 --- /dev/null +++ b/tests/utils.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +test_sleep() +{ + #only sleep when running the test within terminology with test ui on + if [ "$IN_TY_TEST_UI" -eq "1" ]; then + sleep "$1" + fi +} --