Movatterモバイル変換


[0]ホーム

URL:


Google Git
Sign in
chromium /chromium /src /refs/heads/main /. /testing /test_env_test_script.py
blob: 2667cd6b01510648869493bec7fa6141ede316ef [file] [log] [blame] [edit]
#!/usr/bin/env python
# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Script for use in test_env unittests."""
from __future__import print_function
import signal
import sys
import time
def print_signal(sig,*_args):
print('Signal :{}'.format(sig))
if __name__=='__main__':
signal.signal(signal.SIGTERM, print_signal)
signal.signal(signal.SIGINT, print_signal)
if sys.platform=='win32':
signal.signal(signal.SIGBREAK, print_signal)# pylint: disable=no-member
time.sleep(2)# gives process time to receive signal.

[8]ページ先頭

©2009-2025 Movatter.jp