summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/fake_pty.c
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-08-17 06:35:00 -0400
committerJesse Luehrs <doy@tozt.net>2014-08-17 06:35:00 -0400
commitdb3ca13185dac5802e56c18f6d181f886ff28abc (patch)
tree1634b933e52c404779e5f6e5da050986e2690e21 /crawl-ref/source/util/fake_pty.c
parenta44b648ec516a0bbdcf9939186233ef8e811b1d3 (diff)
downloadcrawl-ref-travis.tar.gz
crawl-ref-travis.zip
travis configurationtravis
Diffstat (limited to 'crawl-ref/source/util/fake_pty.c')
-rw-r--r--crawl-ref/source/util/fake_pty.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/crawl-ref/source/util/fake_pty.c b/crawl-ref/source/util/fake_pty.c
index 5db9d78cd7..69ed62b450 100644
--- a/crawl-ref/source/util/fake_pty.c
+++ b/crawl-ref/source/util/fake_pty.c
@@ -30,7 +30,16 @@ static void slurp_output()
while (poll(&pfd, 1, 60000) > 0) // 60 seconds with no output -> die die die!
{
if (read(tty, buf, sizeof(buf)) <= 0)
+#ifdef TRAVIS
+ {
+ puts(".");
+#endif
break;
+#ifdef TRAVIS
+ }
+ else
+ puts("x");
+#endif
}
kill(crawl, SIGTERM); // shooting a zombie is ok, let's make sure it's dead