[RISCV] Fix the cost of `llvm.vector.reduce.and` (#119160)
[llvm-project.git] / llvm / test / Support / interrupts.test
blob0966586106cc7a3e77aea6fde60a8b7e1b70ac51
1 ## Show that SIGINT and similar signals don't cause crash messages to be
2 ## reported.
3 # RUN: %python %s wrapper llvm-symbolizer 2> %t.err
4 # RUN: FileCheck -DMSG=%errc_ENOENT --input-file=%t.err %s
6 # CHECK: {{.*}} error: 'foo': [[MSG]]
7 # CHECK-NOT: {{.+}}
9 import os
10 import signal
11 import subprocess
12 import sys
13 import time
15 def run_symbolizer():
16     proc = subprocess.Popen([sys.argv[2]], stdout=subprocess.PIPE,
17                             stdin=subprocess.PIPE, stderr=sys.stderr)
18     # Write then read some output to ensure the process has started fully.
19     proc.stdin.write(b'foo bar\n')
20     proc.stdin.flush()
21     proc.stdout.readline()
22     # Windows handles signals differently.
23     if os.name == 'nt':
24         os.kill(0, signal.CTRL_BREAK_EVENT)
25     else:
26         proc.send_signal(signal.SIGINT)
28 # On Windows, this function spawns the subprocess in its own (hidden) console,
29 # so that signals do not interfere with the calling test. This isn't necessary
30 # on other systems.
31 def run_wrapper():
32     args = [sys.executable, __file__, 'symbolizer'] + sys.argv[2:]
33     if os.name == 'nt':
34         startupinfo = subprocess.STARTUPINFO()
35         startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
36         subprocess.run(args, stderr=sys.stderr, startupinfo=startupinfo,
37                        creationflags=subprocess.CREATE_NEW_CONSOLE)
38     else:
39         subprocess.run(args, stderr=sys.stderr)
41 if sys.argv[1] == 'wrapper':
42     run_wrapper()
43 else:
44     run_symbolizer()