]>
Commit | Line | Data |
---|---|---|
f345cfd0 SH |
1 | # Common utilities and Python wrappers for qemu-iotests |
2 | # | |
3 | # Copyright (C) 2012 IBM Corp. | |
4 | # | |
5 | # This program is free software; you can redistribute it and/or modify | |
6 | # it under the terms of the GNU General Public License as published by | |
7 | # the Free Software Foundation; either version 2 of the License, or | |
8 | # (at your option) any later version. | |
9 | # | |
10 | # This program is distributed in the hope that it will be useful, | |
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | # GNU General Public License for more details. | |
14 | # | |
15 | # You should have received a copy of the GNU General Public License | |
16 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | # | |
18 | ||
c1c71e49 | 19 | import errno |
f345cfd0 SH |
20 | import os |
21 | import re | |
22 | import subprocess | |
4f450568 | 23 | import string |
f345cfd0 | 24 | import unittest |
ed338bb0 FZ |
25 | import sys |
26 | sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'scripts')) | |
ed338bb0 | 27 | import qtest |
2499a096 | 28 | import struct |
74f69050 | 29 | import json |
2c93c5cb | 30 | import signal |
f345cfd0 | 31 | |
f345cfd0 | 32 | |
934659c4 | 33 | # This will not work if arguments contain spaces but is necessary if we |
f345cfd0 | 34 | # want to support the override options that ./check supports. |
934659c4 HR |
35 | qemu_img_args = [os.environ.get('QEMU_IMG_PROG', 'qemu-img')] |
36 | if os.environ.get('QEMU_IMG_OPTIONS'): | |
37 | qemu_img_args += os.environ['QEMU_IMG_OPTIONS'].strip().split(' ') | |
38 | ||
39 | qemu_io_args = [os.environ.get('QEMU_IO_PROG', 'qemu-io')] | |
40 | if os.environ.get('QEMU_IO_OPTIONS'): | |
41 | qemu_io_args += os.environ['QEMU_IO_OPTIONS'].strip().split(' ') | |
42 | ||
bec87774 HR |
43 | qemu_nbd_args = [os.environ.get('QEMU_NBD_PROG', 'qemu-nbd')] |
44 | if os.environ.get('QEMU_NBD_OPTIONS'): | |
45 | qemu_nbd_args += os.environ['QEMU_NBD_OPTIONS'].strip().split(' ') | |
46 | ||
4c44b4a4 | 47 | qemu_prog = os.environ.get('QEMU_PROG', 'qemu') |
66613974 | 48 | qemu_opts = os.environ.get('QEMU_OPTIONS', '').strip().split(' ') |
f345cfd0 SH |
49 | |
50 | imgfmt = os.environ.get('IMGFMT', 'raw') | |
51 | imgproto = os.environ.get('IMGPROTO', 'file') | |
5a8fabf3 | 52 | test_dir = os.environ.get('TEST_DIR') |
e8f8624d | 53 | output_dir = os.environ.get('OUTPUT_DIR', '.') |
58cc2ae1 | 54 | cachemode = os.environ.get('CACHEMODE') |
e166b414 | 55 | qemu_default_machine = os.environ.get('QEMU_DEFAULT_MACHINE') |
f345cfd0 | 56 | |
30b005d9 | 57 | socket_scm_helper = os.environ.get('SOCKET_SCM_HELPER', 'socket_scm_helper') |
c0088d79 | 58 | debug = False |
30b005d9 | 59 | |
f345cfd0 SH |
60 | def qemu_img(*args): |
61 | '''Run qemu-img and return the exit code''' | |
62 | devnull = open('/dev/null', 'r+') | |
2ef6093c HR |
63 | exitcode = subprocess.call(qemu_img_args + list(args), stdin=devnull, stdout=devnull) |
64 | if exitcode < 0: | |
65 | sys.stderr.write('qemu-img received signal %i: %s\n' % (-exitcode, ' '.join(qemu_img_args + list(args)))) | |
66 | return exitcode | |
f345cfd0 | 67 | |
d2ef210c | 68 | def qemu_img_verbose(*args): |
993d46ce | 69 | '''Run qemu-img without suppressing its output and return the exit code''' |
2ef6093c HR |
70 | exitcode = subprocess.call(qemu_img_args + list(args)) |
71 | if exitcode < 0: | |
72 | sys.stderr.write('qemu-img received signal %i: %s\n' % (-exitcode, ' '.join(qemu_img_args + list(args)))) | |
73 | return exitcode | |
d2ef210c | 74 | |
3677e6f6 HR |
75 | def qemu_img_pipe(*args): |
76 | '''Run qemu-img and return its output''' | |
491e5e85 DB |
77 | subp = subprocess.Popen(qemu_img_args + list(args), |
78 | stdout=subprocess.PIPE, | |
79 | stderr=subprocess.STDOUT) | |
2ef6093c HR |
80 | exitcode = subp.wait() |
81 | if exitcode < 0: | |
82 | sys.stderr.write('qemu-img received signal %i: %s\n' % (-exitcode, ' '.join(qemu_img_args + list(args)))) | |
83 | return subp.communicate()[0] | |
3677e6f6 | 84 | |
f345cfd0 SH |
85 | def qemu_io(*args): |
86 | '''Run qemu-io and return the stdout data''' | |
87 | args = qemu_io_args + list(args) | |
491e5e85 DB |
88 | subp = subprocess.Popen(args, stdout=subprocess.PIPE, |
89 | stderr=subprocess.STDOUT) | |
2ef6093c HR |
90 | exitcode = subp.wait() |
91 | if exitcode < 0: | |
92 | sys.stderr.write('qemu-io received signal %i: %s\n' % (-exitcode, ' '.join(args))) | |
93 | return subp.communicate()[0] | |
f345cfd0 | 94 | |
bec87774 HR |
95 | def qemu_nbd(*args): |
96 | '''Run qemu-nbd in daemon mode and return the parent's exit code''' | |
97 | return subprocess.call(qemu_nbd_args + ['--fork'] + list(args)) | |
98 | ||
e1b5c51f | 99 | def compare_images(img1, img2, fmt1=imgfmt, fmt2=imgfmt): |
3a3918c3 | 100 | '''Return True if two image files are identical''' |
e1b5c51f PB |
101 | return qemu_img('compare', '-f', fmt1, |
102 | '-F', fmt2, img1, img2) == 0 | |
3a3918c3 | 103 | |
2499a096 SH |
104 | def create_image(name, size): |
105 | '''Create a fully-allocated raw image with sector markers''' | |
106 | file = open(name, 'w') | |
107 | i = 0 | |
108 | while i < size: | |
109 | sector = struct.pack('>l504xl', i / 512, i / 512) | |
110 | file.write(sector) | |
111 | i = i + 512 | |
112 | file.close() | |
113 | ||
74f69050 FZ |
114 | def image_size(img): |
115 | '''Return image's virtual size''' | |
116 | r = qemu_img_pipe('info', '--output=json', '-f', imgfmt, img) | |
117 | return json.loads(r)['virtual-size'] | |
118 | ||
a2d1c8fd DB |
119 | test_dir_re = re.compile(r"%s" % test_dir) |
120 | def filter_test_dir(msg): | |
121 | return test_dir_re.sub("TEST_DIR", msg) | |
122 | ||
123 | win32_re = re.compile(r"\r") | |
124 | def filter_win32(msg): | |
125 | return win32_re.sub("", msg) | |
126 | ||
127 | qemu_io_re = re.compile(r"[0-9]* ops; [0-9\/:. sec]* \([0-9\/.inf]* [EPTGMKiBbytes]*\/sec and [0-9\/.inf]* ops\/sec\)") | |
128 | def filter_qemu_io(msg): | |
129 | msg = filter_win32(msg) | |
130 | return qemu_io_re.sub("X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)", msg) | |
131 | ||
132 | chown_re = re.compile(r"chown [0-9]+:[0-9]+") | |
133 | def filter_chown(msg): | |
134 | return chown_re.sub("chown UID:GID", msg) | |
135 | ||
12314f2d SH |
136 | def filter_qmp_event(event): |
137 | '''Filter a QMP event dict''' | |
138 | event = dict(event) | |
139 | if 'timestamp' in event: | |
140 | event['timestamp']['seconds'] = 'SECS' | |
141 | event['timestamp']['microseconds'] = 'USECS' | |
142 | return event | |
143 | ||
a2d1c8fd DB |
144 | def log(msg, filters=[]): |
145 | for flt in filters: | |
146 | msg = flt(msg) | |
147 | print msg | |
148 | ||
2c93c5cb KW |
149 | class Timeout: |
150 | def __init__(self, seconds, errmsg = "Timeout"): | |
151 | self.seconds = seconds | |
152 | self.errmsg = errmsg | |
153 | def __enter__(self): | |
154 | signal.signal(signal.SIGALRM, self.timeout) | |
155 | signal.setitimer(signal.ITIMER_REAL, self.seconds) | |
156 | return self | |
157 | def __exit__(self, type, value, traceback): | |
158 | signal.setitimer(signal.ITIMER_REAL, 0) | |
159 | return False | |
160 | def timeout(self, signum, frame): | |
161 | raise Exception(self.errmsg) | |
162 | ||
f4844ac0 SH |
163 | |
164 | class FilePath(object): | |
165 | '''An auto-generated filename that cleans itself up. | |
166 | ||
167 | Use this context manager to generate filenames and ensure that the file | |
168 | gets deleted:: | |
169 | ||
170 | with TestFilePath('test.img') as img_path: | |
171 | qemu_img('create', img_path, '1G') | |
172 | # migration_sock_path is automatically deleted | |
173 | ''' | |
174 | def __init__(self, name): | |
175 | filename = '{0}-{1}'.format(os.getpid(), name) | |
176 | self.path = os.path.join(test_dir, filename) | |
177 | ||
178 | def __enter__(self): | |
179 | return self.path | |
180 | ||
181 | def __exit__(self, exc_type, exc_val, exc_tb): | |
182 | try: | |
183 | os.remove(self.path) | |
184 | except OSError: | |
185 | pass | |
186 | return False | |
187 | ||
188 | ||
4c44b4a4 | 189 | class VM(qtest.QEMUQtestMachine): |
f345cfd0 SH |
190 | '''A QEMU VM''' |
191 | ||
5fcbdf50 HR |
192 | def __init__(self, path_suffix=''): |
193 | name = "qemu%s-%d" % (path_suffix, os.getpid()) | |
194 | super(VM, self).__init__(qemu_prog, qemu_opts, name=name, | |
195 | test_dir=test_dir, | |
4c44b4a4 | 196 | socket_scm_helper=socket_scm_helper) |
c0088d79 KW |
197 | if debug: |
198 | self._debug = True | |
f345cfd0 | 199 | self._num_drives = 0 |
30b005d9 | 200 | |
486b88bd KW |
201 | def add_device(self, opts): |
202 | self._args.append('-device') | |
203 | self._args.append(opts) | |
204 | return self | |
205 | ||
78b666f4 FZ |
206 | def add_drive_raw(self, opts): |
207 | self._args.append('-drive') | |
208 | self._args.append(opts) | |
209 | return self | |
210 | ||
e1b5c51f | 211 | def add_drive(self, path, opts='', interface='virtio', format=imgfmt): |
f345cfd0 | 212 | '''Add a virtio-blk drive to the VM''' |
8e492253 | 213 | options = ['if=%s' % interface, |
f345cfd0 | 214 | 'id=drive%d' % self._num_drives] |
8e492253 HR |
215 | |
216 | if path is not None: | |
217 | options.append('file=%s' % path) | |
e1b5c51f | 218 | options.append('format=%s' % format) |
fc17c259 | 219 | options.append('cache=%s' % cachemode) |
8e492253 | 220 | |
f345cfd0 SH |
221 | if opts: |
222 | options.append(opts) | |
223 | ||
224 | self._args.append('-drive') | |
225 | self._args.append(','.join(options)) | |
226 | self._num_drives += 1 | |
227 | return self | |
228 | ||
5694923a HR |
229 | def add_blockdev(self, opts): |
230 | self._args.append('-blockdev') | |
231 | if isinstance(opts, str): | |
232 | self._args.append(opts) | |
233 | else: | |
234 | self._args.append(','.join(opts)) | |
235 | return self | |
236 | ||
12314f2d SH |
237 | def add_incoming(self, addr): |
238 | self._args.append('-incoming') | |
239 | self._args.append(addr) | |
240 | return self | |
241 | ||
3cf53c77 FZ |
242 | def pause_drive(self, drive, event=None): |
243 | '''Pause drive r/w operations''' | |
244 | if not event: | |
245 | self.pause_drive(drive, "read_aio") | |
246 | self.pause_drive(drive, "write_aio") | |
247 | return | |
248 | self.qmp('human-monitor-command', | |
249 | command_line='qemu-io %s "break %s bp_%s"' % (drive, event, drive)) | |
250 | ||
251 | def resume_drive(self, drive): | |
252 | self.qmp('human-monitor-command', | |
253 | command_line='qemu-io %s "remove_break bp_%s"' % (drive, drive)) | |
254 | ||
e3409362 IM |
255 | def hmp_qemu_io(self, drive, cmd): |
256 | '''Write to a given drive using an HMP command''' | |
257 | return self.qmp('human-monitor-command', | |
258 | command_line='qemu-io %s "%s"' % (drive, cmd)) | |
259 | ||
7898f74e | 260 | |
f345cfd0 SH |
261 | index_re = re.compile(r'([^\[]+)\[([^\]]+)\]') |
262 | ||
263 | class QMPTestCase(unittest.TestCase): | |
264 | '''Abstract base class for QMP test cases''' | |
265 | ||
266 | def dictpath(self, d, path): | |
267 | '''Traverse a path in a nested dict''' | |
268 | for component in path.split('/'): | |
269 | m = index_re.match(component) | |
270 | if m: | |
271 | component, idx = m.groups() | |
272 | idx = int(idx) | |
273 | ||
274 | if not isinstance(d, dict) or component not in d: | |
275 | self.fail('failed path traversal for "%s" in "%s"' % (path, str(d))) | |
276 | d = d[component] | |
277 | ||
278 | if m: | |
279 | if not isinstance(d, list): | |
280 | self.fail('path component "%s" in "%s" is not a list in "%s"' % (component, path, str(d))) | |
281 | try: | |
282 | d = d[idx] | |
283 | except IndexError: | |
284 | self.fail('invalid index "%s" in path "%s" in "%s"' % (idx, path, str(d))) | |
285 | return d | |
286 | ||
e07375f5 HR |
287 | def flatten_qmp_object(self, obj, output=None, basestr=''): |
288 | if output is None: | |
289 | output = dict() | |
290 | if isinstance(obj, list): | |
291 | for i in range(len(obj)): | |
292 | self.flatten_qmp_object(obj[i], output, basestr + str(i) + '.') | |
293 | elif isinstance(obj, dict): | |
294 | for key in obj: | |
295 | self.flatten_qmp_object(obj[key], output, basestr + key + '.') | |
296 | else: | |
297 | output[basestr[:-1]] = obj # Strip trailing '.' | |
298 | return output | |
299 | ||
5694923a HR |
300 | def qmp_to_opts(self, obj): |
301 | obj = self.flatten_qmp_object(obj) | |
302 | output_list = list() | |
303 | for key in obj: | |
304 | output_list += [key + '=' + obj[key]] | |
305 | return ','.join(output_list) | |
306 | ||
90f0b711 PB |
307 | def assert_qmp_absent(self, d, path): |
308 | try: | |
309 | result = self.dictpath(d, path) | |
310 | except AssertionError: | |
311 | return | |
312 | self.fail('path "%s" has value "%s"' % (path, str(result))) | |
313 | ||
f345cfd0 SH |
314 | def assert_qmp(self, d, path, value): |
315 | '''Assert that the value for a specific path in a QMP dict matches''' | |
316 | result = self.dictpath(d, path) | |
317 | self.assertEqual(result, value, 'values not equal "%s" and "%s"' % (str(result), str(value))) | |
318 | ||
ecc1c88e SH |
319 | def assert_no_active_block_jobs(self): |
320 | result = self.vm.qmp('query-block-jobs') | |
321 | self.assert_qmp(result, 'return', []) | |
322 | ||
e71fc0ba FZ |
323 | def assert_has_block_node(self, node_name=None, file_name=None): |
324 | """Issue a query-named-block-nodes and assert node_name and/or | |
325 | file_name is present in the result""" | |
326 | def check_equal_or_none(a, b): | |
327 | return a == None or b == None or a == b | |
328 | assert node_name or file_name | |
329 | result = self.vm.qmp('query-named-block-nodes') | |
330 | for x in result["return"]: | |
331 | if check_equal_or_none(x.get("node-name"), node_name) and \ | |
332 | check_equal_or_none(x.get("file"), file_name): | |
333 | return | |
334 | self.assertTrue(False, "Cannot find %s %s in result:\n%s" % \ | |
335 | (node_name, file_name, result)) | |
336 | ||
e07375f5 HR |
337 | def assert_json_filename_equal(self, json_filename, reference): |
338 | '''Asserts that the given filename is a json: filename and that its | |
339 | content is equal to the given reference object''' | |
340 | self.assertEqual(json_filename[:5], 'json:') | |
341 | self.assertEqual(self.flatten_qmp_object(json.loads(json_filename[5:])), | |
342 | self.flatten_qmp_object(reference)) | |
343 | ||
3cf53c77 | 344 | def cancel_and_wait(self, drive='drive0', force=False, resume=False): |
2575fe16 SH |
345 | '''Cancel a block job and wait for it to finish, returning the event''' |
346 | result = self.vm.qmp('block-job-cancel', device=drive, force=force) | |
347 | self.assert_qmp(result, 'return', {}) | |
348 | ||
3cf53c77 FZ |
349 | if resume: |
350 | self.vm.resume_drive(drive) | |
351 | ||
2575fe16 SH |
352 | cancelled = False |
353 | result = None | |
354 | while not cancelled: | |
355 | for event in self.vm.get_qmp_events(wait=True): | |
356 | if event['event'] == 'BLOCK_JOB_COMPLETED' or \ | |
357 | event['event'] == 'BLOCK_JOB_CANCELLED': | |
358 | self.assert_qmp(event, 'data/device', drive) | |
359 | result = event | |
360 | cancelled = True | |
361 | ||
362 | self.assert_no_active_block_jobs() | |
363 | return result | |
364 | ||
9974ad40 | 365 | def wait_until_completed(self, drive='drive0', check_offset=True): |
0dbe8a1b SH |
366 | '''Wait for a block job to finish, returning the event''' |
367 | completed = False | |
368 | while not completed: | |
369 | for event in self.vm.get_qmp_events(wait=True): | |
370 | if event['event'] == 'BLOCK_JOB_COMPLETED': | |
371 | self.assert_qmp(event, 'data/device', drive) | |
372 | self.assert_qmp_absent(event, 'data/error') | |
9974ad40 | 373 | if check_offset: |
1d3ba15a | 374 | self.assert_qmp(event, 'data/offset', event['data']['len']) |
0dbe8a1b SH |
375 | completed = True |
376 | ||
377 | self.assert_no_active_block_jobs() | |
378 | return event | |
379 | ||
866323f3 FZ |
380 | def wait_ready(self, drive='drive0'): |
381 | '''Wait until a block job BLOCK_JOB_READY event''' | |
d7b25297 FZ |
382 | f = {'data': {'type': 'mirror', 'device': drive } } |
383 | event = self.vm.event_wait(name='BLOCK_JOB_READY', match=f) | |
866323f3 FZ |
384 | |
385 | def wait_ready_and_cancel(self, drive='drive0'): | |
386 | self.wait_ready(drive=drive) | |
387 | event = self.cancel_and_wait(drive=drive) | |
388 | self.assertEquals(event['event'], 'BLOCK_JOB_COMPLETED') | |
389 | self.assert_qmp(event, 'data/type', 'mirror') | |
390 | self.assert_qmp(event, 'data/offset', event['data']['len']) | |
391 | ||
392 | def complete_and_wait(self, drive='drive0', wait_ready=True): | |
393 | '''Complete a block job and wait for it to finish''' | |
394 | if wait_ready: | |
395 | self.wait_ready(drive=drive) | |
396 | ||
397 | result = self.vm.qmp('block-job-complete', device=drive) | |
398 | self.assert_qmp(result, 'return', {}) | |
399 | ||
400 | event = self.wait_until_completed(drive=drive) | |
401 | self.assert_qmp(event, 'data/type', 'mirror') | |
402 | ||
2c93c5cb KW |
403 | def pause_job(self, job_id='job0'): |
404 | result = self.vm.qmp('block-job-pause', device=job_id) | |
405 | self.assert_qmp(result, 'return', {}) | |
406 | ||
407 | with Timeout(1, "Timeout waiting for job to pause"): | |
408 | while True: | |
409 | result = self.vm.qmp('query-block-jobs') | |
410 | for job in result['return']: | |
411 | if job['device'] == job_id and job['paused'] == True and job['busy'] == False: | |
412 | return job | |
413 | ||
414 | ||
f345cfd0 SH |
415 | def notrun(reason): |
416 | '''Skip this test suite''' | |
417 | # Each test in qemu-iotests has a number ("seq") | |
418 | seq = os.path.basename(sys.argv[0]) | |
419 | ||
e8f8624d | 420 | open('%s/%s.notrun' % (output_dir, seq), 'wb').write(reason + '\n') |
f345cfd0 SH |
421 | print '%s not run: %s' % (seq, reason) |
422 | sys.exit(0) | |
423 | ||
3f5c4076 | 424 | def verify_image_format(supported_fmts=[], unsupported_fmts=[]): |
f345cfd0 SH |
425 | if supported_fmts and (imgfmt not in supported_fmts): |
426 | notrun('not suitable for this image format: %s' % imgfmt) | |
3f5c4076 DB |
427 | if unsupported_fmts and (imgfmt in unsupported_fmts): |
428 | notrun('not suitable for this image format: %s' % imgfmt) | |
f345cfd0 | 429 | |
c6a92369 | 430 | def verify_platform(supported_oses=['linux']): |
79e7a019 | 431 | if True not in [sys.platform.startswith(x) for x in supported_oses]: |
bc521696 FZ |
432 | notrun('not suitable for this OS: %s' % sys.platform) |
433 | ||
b0f90495 AG |
434 | def supports_quorum(): |
435 | return 'quorum' in qemu_img_pipe('--help') | |
436 | ||
3f647b51 SS |
437 | def verify_quorum(): |
438 | '''Skip test suite if quorum support is not available''' | |
b0f90495 | 439 | if not supports_quorum(): |
3f647b51 SS |
440 | notrun('quorum support missing') |
441 | ||
c6a92369 DB |
442 | def main(supported_fmts=[], supported_oses=['linux']): |
443 | '''Run tests''' | |
444 | ||
c0088d79 KW |
445 | global debug |
446 | ||
5a8fabf3 SS |
447 | # We are using TEST_DIR and QEMU_DEFAULT_MACHINE as proxies to |
448 | # indicate that we're not being run via "check". There may be | |
449 | # other things set up by "check" that individual test cases rely | |
450 | # on. | |
451 | if test_dir is None or qemu_default_machine is None: | |
452 | sys.stderr.write('Please run this test via the "check" script\n') | |
453 | sys.exit(os.EX_USAGE) | |
454 | ||
c6a92369 DB |
455 | debug = '-d' in sys.argv |
456 | verbosity = 1 | |
457 | verify_image_format(supported_fmts) | |
458 | verify_platform(supported_oses) | |
459 | ||
f345cfd0 SH |
460 | # We need to filter out the time taken from the output so that qemu-iotest |
461 | # can reliably diff the results against master output. | |
462 | import StringIO | |
aa4f592a FZ |
463 | if debug: |
464 | output = sys.stdout | |
465 | verbosity = 2 | |
466 | sys.argv.remove('-d') | |
467 | else: | |
468 | output = StringIO.StringIO() | |
f345cfd0 SH |
469 | |
470 | class MyTestRunner(unittest.TextTestRunner): | |
aa4f592a | 471 | def __init__(self, stream=output, descriptions=True, verbosity=verbosity): |
f345cfd0 SH |
472 | unittest.TextTestRunner.__init__(self, stream, descriptions, verbosity) |
473 | ||
474 | # unittest.main() will use sys.exit() so expect a SystemExit exception | |
475 | try: | |
476 | unittest.main(testRunner=MyTestRunner) | |
477 | finally: | |
aa4f592a FZ |
478 | if not debug: |
479 | sys.stderr.write(re.sub(r'Ran (\d+) tests? in [\d.]+s', r'Ran \1 tests', output.getvalue())) |