view src/testdir/test_channel_write.py @ 33758:75176b7f8170 v9.0.2101

patch 9.0.2101: CI: test_termdebug may still fail Commit: https://github.com/vim/vim/commit/fdbadea4b60e5e1a0bf192dc5ee04d8ab06f4399 Author: shane.xb.qian <shane.qian@foxmail.com> Date: Sun Nov 12 09:42:12 2023 +0100 patch 9.0.2101: CI: test_termdebug may still fail Problem: CI: test_termdebug may still fail Solution: use term_wait() to make it more robust closes: #13529 Signed-off-by: shane.xb.qian <shane.qian@foxmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Nov 2023 09:45:05 +0100
parents 5cd9ba96561d
children
line wrap: on
line source

#!/usr/bin/python
#
# Program that writes a number to stdout repeatedly
#
# This requires Python 2.6 or later.

from __future__ import print_function
import sys
import time

if __name__ == "__main__":

    done = 0
    while done < 10:
        done = done + 1
        print(done)
        sys.stdout.flush()
        time.sleep(0.05)  # sleep 50 msec