File: utils.sh

package info (click to toggle)
terminology 1.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,708 kB
  • sloc: ansic: 39,451; sh: 6,352; python: 314; perl: 105; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 167 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/bin/sh

test_sleep()
{
    #only sleep when running the test within terminology with test ui on
    if [ "$IN_TY_TEST_UI" = "1" ]; then
        sleep "$1"
    fi
}