summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/quteprocess.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-06-24 19:36:30 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-06-24 19:36:30 +0200
commit76e8debbc08288c5321be34a5f747e58ab997abe (patch)
tree8e4efcab172e2925c9359780797aba2fb2b76a34 /tests/end2end/fixtures/quteprocess.py
parenta0f078da38603f8e6556b5c1c0fb836426943ddd (diff)
downloadqutebrowser-76e8debbc08288c5321be34a5f747e58ab997abe.tar.gz
qutebrowser-76e8debbc08288c5321be34a5f747e58ab997abe.zip
ci: Switch from TRAVIS to CI env vars
Diffstat (limited to 'tests/end2end/fixtures/quteprocess.py')
-rw-r--r--tests/end2end/fixtures/quteprocess.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 2e47c9e43..4ff9dc21d 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -711,7 +711,7 @@ class QuteProc(testprocess.Process):
is_dl_inconsistency = str(self.captured_log[-1]).endswith(
"_dl_allocate_tls_init: Assertion "
"`listp->slotinfo[cnt].gen <= GL(dl_tls_generation)' failed!")
- if 'TRAVIS' in os.environ and is_dl_inconsistency:
+ if 'CI' in os.environ and is_dl_inconsistency:
# WORKAROUND for https://sourceware.org/bugzilla/show_bug.cgi?id=19329
self.captured_log = []
self._log("NOTE: Restarted after libc DL inconsistency!")