Home
last modified time | relevance | path

Searched refs:stdout (Results 1 – 25 of 2031) sorted by relevance

12345678910>>...82

/external/valgrind/none/tests/tilegx/
DMakefile.am11 insn_test_move_X0.stdout.exp insn_test_move_X0.stderr.exp \
13 insn_test_move_X1.stdout.exp insn_test_move_X1.stderr.exp \
15 insn_test_move_Y0.stdout.exp insn_test_move_Y0.stderr.exp \
17 insn_test_move_Y1.stdout.exp insn_test_move_Y1.stderr.exp \
19 insn_test_movei_X0.stdout.exp insn_test_movei_X0.stderr.exp \
21 insn_test_movei_X1.stdout.exp insn_test_movei_X1.stderr.exp \
23 insn_test_movei_Y0.stdout.exp insn_test_movei_Y0.stderr.exp \
25 insn_test_movei_Y1.stdout.exp insn_test_movei_Y1.stderr.exp \
27 insn_test_moveli_X0.stdout.exp insn_test_moveli_X0.stderr.exp \
29 insn_test_moveli_X1.stdout.exp insn_test_moveli_X1.stderr.exp \
[all …]
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt054main.py38 stdout = StringIO()
65 stdout = StringIO()
70 stdout=stdout
73 self.failUnlessEqual(len(stdout.getvalue().splitlines()), 3)
90 stdout = StringIO()
96 stdout=stdout
99 self.failUnlessEqual(len(stdout.getvalue().splitlines()), 3)
116 stdout = StringIO()
122 stdout=stdout
125 self.failUnlessEqual(len(stdout.getvalue().splitlines()), 3)
[all …]
/external/valgrind/none/tests/mips64/
DMakefile.am7 arithmetic_instruction.stdout.exp-mips64 \
8 arithmetic_instruction.stdout.exp-mips64r2 arithmetic_instruction.stderr.exp \
10 branch_and_jump_instructions.stdout.exp \
12 branches.stdout.exp branches.stderr.exp branches.vgtest \
13 cvm_bbit.stdout.exp cvm_bbit.stdout.exp-non-octeon \
15 cvm_ins.stdout.exp cvm_ins.stdout.exp-non-octeon \
17 cvm_lx_ins.stdout.exp-LE cvm_lx_ins.stdout.exp-BE \
18 cvm_lx_ins.stdout.exp-non-octeon \
20 cvm_atomic.stdout.exp-LE cvm_atomic.stdout.exp-non-octeon \
22 cvm_atomic_thread.stdout.exp-LE cvm_atomic_thread.stdout.exp-non-octeon \
[all …]
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
Dtest_ls.py50 stdout = self.RunGsUtil(['ls', '-b', suri(bucket_uri)],
52 self.assertEqual('%s/\n' % suri(bucket_uri), stdout)
61 stdout = self.RunGsUtil(['ls', '-Lb', suri(bucket_uri)],
63 self.assertIn(suri(bucket_uri), stdout)
64 self.assertNotIn('TOTAL:', stdout)
73 stdout = self.RunGsUtil(['ls', '-lb', suri(bucket_uri)],
75 self.assertIn(suri(bucket_uri), stdout)
76 self.assertNotIn('TOTAL:', stdout)
100 stdout = self.RunGsUtil(['ls', '-b', wildcard], return_stdout=True)
102 actual = set(stdout.split())
[all …]
Dtest_help.py33 stdout = self.RunCommand('help', return_stdout=True)
34 self.assertIn('Available commands', stdout)
37 stdout = self.RunCommand('help', ['web', 'set'], return_stdout=True)
38 self.assertIn('gsutil web set', stdout)
39 self.assertNotIn('gsutil web get', stdout)
42 stdout = self.RunCommand('help', ['web', 'asdf'], return_stdout=True)
43 self.assertIn('help about one of the subcommands', stdout)
46 stdout = self.RunCommand('help', ['ls', 'asdf'], return_stdout=True)
47 self.assertIn('has no subcommands', stdout)
50 stdout = self.RunCommand('help', ['ls'], return_stdout=True)
[all …]
Dtest_stat.py30 stdout = self.RunGsUtil(['stat', suri(object_uri)], return_stdout=True)
31 self.assertIn(object_uri.uri, stdout)
32 self.assertIn('Creation time:', stdout)
47 self.assertIn('Cache-Control:', stdout)
48 self.assertIn('Content-Encoding:', stdout)
49 self.assertIn('Generation:', stdout)
50 self.assertIn('Metageneration:', stdout)
51 self.assertIn('Hash (crc32c):', stdout)
52 self.assertIn('Hash (md5):', stdout)
53 self.assertIn('Content-Length:', stdout)
[all …]
Dtest_cat.py45 stdout = self.RunGsUtil(['cat', '-r 1-3', suri(key_uri)],
47 self.assertEqual('123', stdout)
48 stdout = self.RunGsUtil(['cat', '-r 8-', suri(key_uri)],
50 self.assertEqual('89', stdout)
51 stdout = self.RunGsUtil(['cat', '-r 0-0', suri(key_uri)],
53 self.assertEqual('0', stdout)
54 stdout = self.RunGsUtil(['cat', '-r -3', suri(key_uri)],
56 self.assertEqual('789', stdout)
65 stdout = self.RunGsUtil(['cat', suri(uri1)], return_stdout=True)
67 self.assertEqual('data2', stdout)
[all …]
Dtest_du.py48 stdout = self.RunGsUtil(['du', suri(obj_uri)], return_stdout=True)
49 self.assertEqual(stdout, '%-10s %s\n' % (3, suri(obj_uri)))
58 stdout = self.RunGsUtil(['du', suri(bucket_uri)], return_stdout=True)
59 self.assertEqual(stdout, '%-10s %s\n' % (3, suri(obj_uri)))
69 stdout = self.RunGsUtil(['du', suri(bucket_uri)], return_stdout=True)
70 self.assertSetEqual(set(stdout.splitlines()), set([
88 stdout = self.RunGsUtil(['du', suri(obj_uri1), suri(obj_uri2)],
90 self.assertSetEqual(set(stdout.splitlines()), set([
104 stdout = self.RunGsUtil(['du', '-c', suri(bucket_uri)],
106 self.assertSetEqual(set(stdout.splitlines()), set([
[all …]
Dtest_hash.py34 stdout = self.RunCommand('hash', args=[tmp_file], return_stdout=True)
35 self.assertIn('Hashes [base64]', stdout)
36 self.assertIn('\tHash (crc32c):\t\t%s' % self._TEST_FILE_B64_CRC, stdout)
37 self.assertIn('\tHash (md5):\t\t%s' % self._TEST_FILE_B64_MD5, stdout)
56 stdout = self.RunCommand('hash', args=['-h', tmp_file], return_stdout=True)
57 self.assertIn('Hashes [hex]', stdout)
58 self.assertIn('\tHash (crc32c):\t\t%s' % self._TEST_FILE_HEX_CRC, stdout)
59 self.assertIn('\tHash (md5):\t\t%s' % self._TEST_FILE_HEX_MD5, stdout)
64 stdout = self.RunCommand('hash', args=[os.path.join(tmp_dir, '*')],
68 self.assertEquals(len(stdout.splitlines()), num_expected_lines)
[all …]
/external/valgrind/helgrind/tests/
DMakefile.am10 annotate_hbefore.vgtest annotate_hbefore.stdout.exp \
12 annotate_rwlock.vgtest annotate_rwlock.stdout.exp \
14 annotate_smart_pointer.vgtest annotate_smart_pointer.stdout.exp \
17 cond_timedwait_invalid.vgtest cond_timedwait_invalid.stdout.exp \
19 cond_timedwait_test.vgtest cond_timedwait_test.stdout.exp \
21 bar_bad.vgtest bar_bad.stdout.exp bar_bad.stderr.exp \
22 bar_trivial.vgtest bar_trivial.stdout.exp bar_trivial.stderr.exp \
23 free_is_write.vgtest free_is_write.stdout.exp \
25 hg01_all_ok.vgtest hg01_all_ok.stdout.exp hg01_all_ok.stderr.exp \
26 hg02_deadlock.vgtest hg02_deadlock.stdout.exp hg02_deadlock.stderr.exp \
[all …]
/external/valgrind/none/tests/mips32/
DMakefile.am7 block_size.stdout.exp block_size.stderr.exp block_size.vgtest \
8 branches.stdout.exp branches.stderr.exp branches.vgtest \
9 FPUarithmetic.stdout.exp FPUarithmetic.stdout.exp-mips32 \
11 LoadStore.stdout.exp LoadStore.stdout.exp-BE LoadStore.stderr.exp \
13 LoadStore1.stdout.exp LoadStore1.stdout.exp-LE LoadStore1.stderr.exp \
15 MemCpyTest.stdout.exp MemCpyTest.stderr.exp MemCpyTest.vgtest \
16 MIPS32int.stdout.exp-mips32-BE MIPS32int.stdout.exp-mips32r2-BE \
17 MIPS32int.stdout.exp-mips32-LE MIPS32int.stdout.exp-mips32r2-LE \
19 MoveIns.stdout.exp MoveIns.stdout.exp-BE MoveIns.stderr.exp MoveIns.vgtest \
20 round.stdout.exp round.stderr.exp round.vgtest \
[all …]
/external/valgrind/none/tests/amd64/
DMakefile.am24 aes.vgtest aes.stdout.exp aes.stderr.exp \
25 amd64locked.vgtest amd64locked.stdout.exp amd64locked.stderr.exp \
26 avx-1.vgtest avx-1.stdout.exp avx-1.stderr.exp \
27 avx2-1.vgtest avx2-1.stdout.exp avx2-1.stderr.exp \
28 asorep.stderr.exp asorep.stdout.exp asorep.vgtest \
29 bmi.stderr.exp bmi.stdout.exp bmi.vgtest \
30 fma.stderr.exp fma.stdout.exp fma.vgtest \
31 bug127521-64.vgtest bug127521-64.stdout.exp bug127521-64.stderr.exp \
32 bug132813-amd64.vgtest bug132813-amd64.stdout.exp \
34 bug137714-amd64.vgtest bug137714-amd64.stdout.exp \
[all …]
/external/libxml2/
DtestSAX.c261 fprintf(stdout, "SAX.isStandalone()\n"); in isStandaloneDebug()
279 fprintf(stdout, "SAX.hasInternalSubset()\n"); in hasInternalSubsetDebug()
297 fprintf(stdout, "SAX.hasExternalSubset()\n"); in hasExternalSubsetDebug()
314 fprintf(stdout, "SAX.internalSubset(%s,", name); in internalSubsetDebug()
316 fprintf(stdout, " ,"); in internalSubsetDebug()
318 fprintf(stdout, " %s,", ExternalID); in internalSubsetDebug()
320 fprintf(stdout, " )\n"); in internalSubsetDebug()
322 fprintf(stdout, " %s)\n", SystemID); in internalSubsetDebug()
338 fprintf(stdout, "SAX.externalSubset(%s,", name); in externalSubsetDebug()
340 fprintf(stdout, " ,"); in externalSubsetDebug()
[all …]
DtestHTML.c108 fprintf(stdout, "SAX.isStandalone()\n"); in isStandaloneDebug()
123 fprintf(stdout, "SAX.hasInternalSubset()\n"); in hasInternalSubsetDebug()
138 fprintf(stdout, "SAX.hasExternalSubset()\n"); in hasExternalSubsetDebug()
152 fprintf(stdout, "SAX.internalSubset(%s,", name); in internalSubsetDebug()
154 fprintf(stdout, " ,"); in internalSubsetDebug()
156 fprintf(stdout, " %s,", ExternalID); in internalSubsetDebug()
158 fprintf(stdout, " )\n"); in internalSubsetDebug()
160 fprintf(stdout, " %s)\n", SystemID); in internalSubsetDebug()
183 fprintf(stdout, "SAX.resolveEntity("); in resolveEntityDebug()
185 fprintf(stdout, "%s", (char *)publicId); in resolveEntityDebug()
[all …]
/external/valgrind/none/tests/x86/
DMakefile.am35 aad_aam.stdout.exp aad_aam.stderr.exp aad_aam.vgtest \
36 badseg.stderr.exp badseg.stdout.exp badseg.stdout.exp-solaris \
38 bt_everything.stderr.exp bt_everything.stdout.exp bt_everything.vgtest \
39 bt_literal.stderr.exp bt_literal.stdout.exp bt_literal.vgtest \
40 bug125959-x86.stderr.exp bug125959-x86.stdout.exp bug125959-x86.vgtest \
41 bug126147-x86.stderr.exp bug126147-x86.stdout.exp bug126147-x86.vgtest \
42 bug132813-x86.stderr.exp bug132813-x86.stdout.exp bug132813-x86.vgtest \
43 bug135421-x86.stderr.exp bug135421-x86.stdout.exp bug135421-x86.vgtest \
44 bug137714-x86.stderr.exp bug137714-x86.stdout.exp bug137714-x86.vgtest \
45 bug152818-x86.stderr.exp bug152818-x86.stdout.exp bug152818-x86.vgtest \
[all …]
/external/valgrind/none/tests/ppc64/
DMakefile.am7 jm-int.stderr.exp jm-int.stdout.exp jm-int.vgtest jm-int.stdout.exp-LE \
8 …jm-fp.stderr.exp jm-fp.stdout.exp jm-fp.vgtest jm-fp.stdout.exp-LE jm-fp.stdout.exp-LE2 jm-fp.st…
9 jm-vmx.stderr.exp jm-vmx.stdout.exp jm-vmx.stdout.exp_Minus_nan jm-vmx.stdout.exp-LE \
11 jm-misc.stderr.exp jm-misc.stdout.exp jm-misc.vgtest \
12 lsw.stderr.exp lsw.stdout.exp lsw.vgtest \
13 std_reg_imm.vgtest std_reg_imm.stderr.exp std_reg_imm.stdout.exp std_reg_imm.stdout.exp-LE \
14 round.stderr.exp round.stdout.exp round.vgtest \
15 twi_tdi.stderr.exp twi_tdi.stdout.exp twi_tdi.vgtest \
16 tw_td.stderr.exp tw_td.stdout.exp tw_td.vgtest \
18 power6_bcmp.stderr.exp power6_bcmp.stdout.exp power6_bcmp.vgtest \
[all …]
/external/valgrind/none/tests/ppc32/
DMakefile.am7 bug129390-ppc32.stdout.exp bug129390-ppc32.stderr.exp \
9 bug139050-ppc32.stdout.exp bug139050-ppc32.stderr.exp \
11 ldstrev.stderr.exp ldstrev.stdout.exp ldstrev.vgtest \
12 jm-int.stderr.exp jm-int.stdout.exp jm-int.vgtest \
13 jm-fp.stderr.exp jm-fp.stdout.exp jm-fp.vgtest jm-fp.stdout.exp-BE2 \
14 jm-vmx.stderr.exp jm-vmx.stdout.exp jm-vmx.stdout.exp_Minus_nan \
16 jm-misc.stderr.exp jm-misc.stdout.exp jm-misc.vgtest \
17 lsw.stderr.exp lsw.stdout.exp lsw.vgtest \
18 mftocrf.stderr.exp mftocrf.stdout.exp mftocrf.vgtest \
19 mcrfs.stderr.exp mcrfs.stdout.exp mcrfs.vgtest \
[all …]
/external/valgrind/memcheck/tests/solaris/
DMakefile.am15 brk.stderr.exp brk.stdout.exp brk.vgtest \
16 context_stack_die.stderr.exp context_stack_die.stdout.exp context_stack_die.vgtest \
17 door_data.stderr.exp door_data.stdout.exp door_data.vgtest \
18 door_kill.stderr.exp door_kill.stdout.exp door_kill.vgtest \
19 execx.stderr.exp execx.stdout.exp execx.vgtest \
21 gethrtime.stderr.exp gethrtime.stdout.exp gethrtime.vgtest \
22 gethrusec.stderr.exp gethrusec.stdout.exp gethrusec.vgtest \
23 ioctl.stderr.exp ioctl.stdout.exp ioctl.vgtest \
24 ldynsym.stderr.exp ldynsym.stdout.exp ldynsym.vgtest \
25 lsframe1.stderr.exp lsframe1.stdout.exp lsframe1.vgtest \
[all …]
/external/autotest/server/cros/
Dtelemetry_runner_unittest.py47 exit_code=0, stdout=self.SAMPLE_RESULT_LINES)
55 stdout = self.SAMPLE_RESULT_LINES
59 result = telemetry_runner.TelemetryResult(exit_code=2, stdout=stdout,
68 stdout = self.SAMPLE_RESULT_LINES
76 result = telemetry_runner.TelemetryResult(exit_code=2, stdout=stdout,
85 stdout = ('Pages: [http://www.google.com, http://www.facebook.com]\n' +
89 result = telemetry_runner.TelemetryResult(exit_code=1, stdout=stdout,
98 stdout = (self.SAMPLE_RESULT_LINES + '\n'
103 result = telemetry_runner.TelemetryResult(exit_code=0, stdout=stdout,
112 stdout = ('Pages: [http://www.google.com, http://www.facebook.com]\n' +
[all …]
/external/libexif/test/
Dtest-mnote.c35 fprintf (stdout, "Byte order: %s\n", in test_exif_data()
38 fprintf (stdout, "Parsing maker note...\n"); in test_exif_data()
46 fprintf (stdout, "Increasing ref-count...\n"); in test_exif_data()
49 fprintf (stdout, "Decreasing ref-count...\n"); in test_exif_data()
52 fprintf (stdout, "Counting entries...\n"); in test_exif_data()
54 fprintf (stdout, "Found %i entries.\n", c); in test_exif_data()
56 fprintf (stdout, "Dumping entry number %i...\n", i); in test_exif_data()
57 fprintf (stdout, " Name: '%s'\n", in test_exif_data()
59 fprintf (stdout, " Title: '%s'\n", in test_exif_data()
61 fprintf (stdout, " Description: '%s'\n", in test_exif_data()
[all …]
/external/selinux/policycoreutils/semanage/
Dtest-semanage.py36 p = Popen(['semanage', object, '-E'], stdout=PIPE)
42 p = Popen(['semanage', "export", '-f', '/tmp/out'], stdout=PIPE)
46 p = Popen(["semanage", "export", "-S", "targeted", "-f", "-"], stdout=PIPE)
50 p = Popen(["semanage", "-S", "targeted", "-o", "-"], stdout=PIPE)
54 p = Popen(['semanage', "import", '-f', '/tmp/out'], stdout=PIPE)
58 p = Popen(["semanage", "import", "-S", "targeted", "-f", "/tmp/out"], stdout=PIPE)
62 p = Popen(["semanage", "-S", "targeted", "-i", "/tmp/out"], stdout=PIPE)
71 p = Popen(['semanage', object, '-l'], stdout=PIPE)
80 p = Popen(['semanage', object, '-lC'], stdout=PIPE)
89 … = Popen(["semanage", "fcontext", "-a", "-t", "httpd_sys_content_t", "/ha-web(/.*)?"], stdout=PIPE)
[all …]
/external/valgrind/none/tests/
DMakefile.am87 allexec32.stdout.exp allexec32.stderr.exp allexec32.vgtest\
88 allexec64.stdout.exp allexec64.stderr.exp allexec64.vgtest\
90 args.stderr.exp args.stdout.exp args.vgtest \
93 bigcode.vgtest bigcode.stderr.exp bigcode.stdout.exp \
95 bug129866.vgtest bug129866.stderr.exp bug129866.stdout.exp \
96 bug234814.vgtest bug234814.stderr.exp bug234814.stdout.exp \
98 cmdline0.stderr.exp cmdline0.stdout.exp cmdline0.vgtest \
99 cmdline1.stderr.exp cmdline1.stdout.exp cmdline1.vgtest \
100 cmdline2.stderr.exp cmdline2.stdout.exp cmdline2.vgtest \
107 coolo_sigaction.stdout.exp coolo_sigaction.vgtest \
[all …]
/external/autotest/client/site_tests/camera_V4L2/
Dcamera_V4L2.py65 def unittest_passed(self, testname, stdout): argument
66 return re.search(r"OK \] V4L2DeviceTest\." + testname, stdout);
73 stdout = utils.system_output(cmd, retain_output=True)
80 if not self.unittest_passed("MultipleOpen", stdout):
84 if not self.unittest_passed("MultipleInit", stdout):
90 if not self.unittest_passed("EnumControl", stdout):
93 control_info = pattern.findall(stdout)
110 if not self.unittest_passed("SetControl", stdout):
116 if not self.unittest_passed("ProbeCaps", stdout):
119 if not re.search(r"support video capture interface.>>>", stdout):
[all …]
/external/webrtc/webrtc/modules/audio_coding/test/
DAPITest.cc280 EXPECT_TRUE(freopen("APITest_log.txt", "w", stdout) != 0); in SetUp()
457 fprintf(stdout, "\nTesting Delay ...\n"); in RunTest()
488 fprintf(stdout, "\nTesting Delay ...\n"); in APIRunA()
605 fprintf(stdout, "DTX %3s, VAD %3s, Mode %d", dtxEnabled ? "ON" : "OFF", in CheckVADStatus()
608 fprintf(stdout, " => bit-rate %3.0f kbps\n", _channel_A2B->BitRate()); in CheckVADStatus()
611 fprintf(stdout, "DTX %3s, VAD %3s, Mode %d => bit-rate %3.0f kbps\n", in CheckVADStatus()
636 fprintf(stdout, "DTX %3s, VAD %3s, Mode %d", dtxEnabled ? "ON" : "OFF", in CheckVADStatus()
639 fprintf(stdout, " => bit-rate %3.0f kbps\n", _channel_B2A->BitRate()); in CheckVADStatus()
642 fprintf(stdout, "DTX %3s, VAD %3s, Mode %d => bit-rate %3.0f kbps\n", in CheckVADStatus()
714 fprintf(stdout, in TestDelay()
[all …]
/external/rmi4utils/rmihidtool/
Dmain.cpp57 fprintf(stdout, "Usage: %s [OPTIONS] DEVICEFILE\n", prog_name); in print_help()
58 fprintf(stdout, "\t-h, --help\t\t\t\tPrint this message\n"); in print_help()
59 fprintf(stdout, "\t-p, --protocol [protocol]\t\tSet which transport prototocl to use.\n"); in print_help()
60 fprintf(stdout, "\t-i, --interactive\t\t\tRun in interactive mode.\n"); in print_help()
61 fprintf(stdout, "\t-r, --read [address] [length]\t\tRead registers starting at the address.\n"); in print_help()
62 …fprintf(stdout, "\t-r, --write [address] [length] [data]\tWrite registers starting at the address.… in print_help()
63 fprintf(stdout, "\t-f, --firmware-id\t\t\tPrint the firmware id\n"); in print_help()
64 fprintf(stdout, "\t-o, --props\t\t\t\tPrint device properties\n"); in print_help()
65 fprintf(stdout, "\t-a, --attention\t\t\t\tPrint attention reports until control + c\n"); in print_help()
66 fprintf(stdout, "\t-m, --print-functions\t\t\tPrint RMI4 functions for the device.\n"); in print_help()
[all …]

12345678910>>...82