| /qemu/scripts/ |
| A D | feature_to_c.py | 7 sys.stdout.write(' ' * indent) 8 sys.stdout.write('"') 13 sys.stdout.write('\n') 15 sys.stdout.write('"') 19 sys.stdout.write('\\"') 21 sys.stdout.write('\\\\') 31 sys.stdout.write('"') 87 sys.stdout.write(' {\n') 89 sys.stdout.write(',\n') 91 sys.stdout.write(',\n') [all …]
|
| A D | undefsym.py | 14 def filter_lines_set(stdout, from_staticlib): argument 16 for line in stdout.splitlines(): 34 pc = subprocess.run([nm, "-P", "-g", staticlib], stdout=subprocess.PIPE) 37 staticlib_syms = filter_lines_set(pc.stdout, True) 40 pc = subprocess.run([nm, "-P", "-g"] + shared_modules, stdout=subprocess.PIPE) 43 modules_undef_syms = filter_lines_set(pc.stdout, False) 45 sys.stdout.buffer.write(b'\n'.join(lines))
|
| A D | shaderinclude.py | 16 with os.fdopen(sys.stdout.fileno(), "wt", closefd=False, newline='\n') as stdout: 18 print(f'static GLchar {varname}_src[] =', file=stdout) 21 print(f' "{line}\\n"', file=stdout) 22 print(' "\\n";', file=stdout)
|
| A D | symlink-install-tree.py | 19 stdout=subprocess.PIPE, check=True).stdout
|
| /qemu/tests/tcg/multiarch/ |
| A D | test-mmap.c | 107 fprintf(stdout, " passed\n"); in check_aligned_anonymous_unfixed_mmaps() 116 fprintf(stdout, "%s", __func__); in check_large_anonymous_unfixed_mmap() 131 fprintf(stdout, " passed\n"); in check_large_anonymous_unfixed_mmap() 183 fprintf(stdout, " passed\n"); in check_aligned_anonymous_unfixed_colliding_mmaps() 215 fprintf(stdout, " passed\n"); in check_aligned_anonymous_fixed_mmaps() 246 fprintf(stdout, " passed\n"); in check_aligned_anonymous_fixed_mmaps_collide_with_host() 255 fprintf(stdout, "%s", __func__); in check_file_unfixed_mmaps() 297 fprintf(stdout, " passed\n"); in check_file_unfixed_mmaps() 330 fprintf(stdout, " passed\n"); in check_file_unfixed_eof_mmaps() 374 fprintf(stdout, " passed\n"); in check_file_fixed_eof_mmaps() [all …]
|
| /qemu/python/ |
| A D | avocado.cfg | 5 # Don't show stdout/stderr in the test *summary* 9 # Don't show the full debug.log output; only select stdout/stderr. 10 output.testlogs.logfiles = ['stdout', 'stderr'] 12 # Show full stdout/stderr only on tests that FAIL
|
| /qemu/tests/functional/qemu_test/ |
| A D | tesseract.py | 17 (stdout, stderr, ret) = run_cmd([ 'tesseract', '--version']) 20 version = stdout.split()[1] 26 (stdout, stderr, ret) = run_cmd(['tesseract', image_path, 31 for line in stdout.split('\n'):
|
| A D | cmd.py | 70 stdout=subprocess.PIPE, 73 stdout, stderr = subp.communicate() 76 return (stdout, stderr, ret)
|
| A D | linuxkernel.py | 42 (stdout, stderr, ret) = run_cmd(['ar', 't', deb_path]) 43 file_path = stdout.split()[2]
|
| /qemu/tests/qemu-iotests/ |
| A D | 030 | 67 qemu_io('-f', 'raw', '-c', 'map', backing_img).stdout, 68 qemu_io('-f', iotests.imgfmt, '-c', 'map', test_img).stdout, 75 qemu_io('-f', 'raw', '-rU', '-c', 'map', backing_img).stdout, 87 qemu_io('-f', 'raw', '-c', 'map', backing_img).stdout, 88 qemu_io('-f', iotests.imgfmt, '-c', 'map', mid_img).stdout, 116 qemu_io('-f', 'raw', '-c', 'map', backing_img).stdout, 117 qemu_io('-f', iotests.imgfmt, '-c', 'map', test_img).stdout, 125 '-f', iotests.imgfmt, '-rU', '-c', 'map', test_img).stdout 136 qemu_io('-f', iotests.imgfmt, '-c', 'map', test_img).stdout, 150 qemu_io('-f', iotests.imgfmt, '-c', 'map', mid_img).stdout, [all …]
|
| A D | 277 | 48 nbd_sock, conf_file], stdout=subprocess.PIPE, 50 line = srv.stdout.readline() 65 clt = subprocess.Popen(args, stdout=subprocess.PIPE,
|
| A D | 297 | 46 sys.stdout.flush() 56 sys.stdout.flush()
|
| /qemu/scripts/performance/ |
| A D | topN_perf.py | 59 stdout=subprocess.DEVNULL) 65 stdout=subprocess.DEVNULL, 94 stdout=subprocess.DEVNULL, 104 stdout=output,
|
| A D | topN_callgrind.py | 59 stdout=subprocess.DEVNULL) 67 stdout=subprocess.DEVNULL, 76 stdout=output,
|
| A D | dissect.py | 79 ["which", "valgrind"], stdout=subprocess.DEVNULL) 95 stdout=subprocess.DEVNULL, 104 stdout=output,
|
| /qemu/tests/tcg/ppc64/ |
| A D | vsx_f2i_nan.c | 214 " vector failed\n", stdout); \ in DEFINE_VSX_ALL_EQ_FUNC() 215 fputs("Source values: ", stdout); \ in DEFINE_VSX_ALL_EQ_FUNC() 216 print_vsx_##SRC_T##_vec_elements(stdout, src_v); \ in DEFINE_VSX_ALL_EQ_FUNC() 217 fputs("\nExpected result: ", stdout); \ in DEFINE_VSX_ALL_EQ_FUNC() 218 print_vsx_##DEST_T##_vec_elements(stdout, expected_result); \ in DEFINE_VSX_ALL_EQ_FUNC() 219 fputs("\nActual result: ", stdout); \ in DEFINE_VSX_ALL_EQ_FUNC() 220 print_vsx_##DEST_T##_vec_elements(stdout, actual_result); \ in DEFINE_VSX_ALL_EQ_FUNC() 221 fputs("\n\n", stdout); \ in DEFINE_VSX_ALL_EQ_FUNC()
|
| /qemu/tests/qapi-schema/ |
| A D | test-qapi.py | 148 sys.stdout = StringIO() 159 actual_out = sys.stdout.getvalue().splitlines(True) 160 sys.stdout.close() 161 sys.stdout = sys.__stdout__ 181 sys.stdout.writelines(out_diff) 182 sys.stdout.writelines(err_diff)
|
| /qemu/contrib/ivshmem-client/ |
| A D | main.c | 126 fflush(stdout); in ivshmem_client_handle_stdin_command() 211 fflush(stdout); in main() 227 fprintf(stdout, "listen on server socket %d\n", client.sock_fd); in main() 234 fprintf(stdout, "disconnected from server\n"); in main()
|
| /qemu/tests/vm/ |
| A D | aarch64vm.py | 76 stdout=fd_null, stderr=subprocess.STDOUT) 87 stdout=fd_null, stderr=subprocess.STDOUT) 91 stdout=fd_null, stderr=subprocess.STDOUT)
|
| /qemu/scripts/simplebench/ |
| A D | bench_prealloc.py | 33 p = subprocess.run(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, 38 m = re.search(r'Run completed in (\d+.\d+) seconds.', p.stdout) 54 '16G'], stdout=subprocess.DEVNULL,
|
| A D | bench_block_job.py | 87 stdout=subprocess.PIPE, check=True).stdout 110 stdout=subprocess.DEVNULL,
|
| A D | img_bench_templater.py | 35 p = subprocess.run(test, shell=True, stdout=subprocess.PIPE, 40 m = re.search(r'Run completed in (\d+.\d+) seconds.', p.stdout)
|
| /qemu/.gitlab-ci.d/ |
| A D | opensbi.yml | 74 - opensbi32-generic-stdout.log 76 - opensbi64-generic-stdout.log 86 …- make -j${JOBS} -C roms opensbi32-generic 2>&1 1>opensbi32-generic-stdout.log | tee -a opensbi32-… 88 …- make -j${JOBS} -C roms opensbi64-generic 2>&1 1>opensbi64-generic-stdout.log | tee -a opensbi64-…
|
| /qemu/tests/functional/ |
| A D | test_arm_bflt.py | 36 self.assertIn(ver, res.stdout) 40 self.assertIn(unm, res.stdout)
|
| /qemu/tests/avocado/avocado_qemu/ |
| A D | __init__.py | 83 stdout=subprocess.PIPE, 86 stdout, stderr = subp.communicate() 89 return (stdout, stderr, ret) 419 stdout, _ = self.ssh_command(cmd) 420 for line in stdout:
|