• Home
  • Raw
  • Download

Lines Matching full:exe

70 def spawn(exe, args, env, encoding=None, codec_errors='strict'):  argument
73 return pexpect.popen_spawn.PopenSpawn([ exe ] + args, env=env,
76 return pexpect.spawn(exe, args, env=env, encoding=encoding,
115 # @param exe The executable.
119 def test_utf8(exe, args, env, idx, bc=True): argument
124 child = pexpect.spawn(exe, args=args, env=env, encoding='utf-8', codec_errors='ignore')
156 # @param exe The executable.
159 def test_utf8_0(exe, args, env, bc=True): argument
164 child = pexpect.spawn(exe, args=args, env=env, encoding='utf-8', codec_errors='ignore')
198 def test_utf8_1(exe, args, env, bc=True): argument
199 return test_utf8(exe, args, env, 0, bc)
202 def test_utf8_2(exe, args, env, bc=True): argument
203 return test_utf8(exe, args, env, 1, bc)
206 def test_utf8_3(exe, args, env, bc=True): argument
207 return test_utf8(exe, args, env, 2, bc)
210 def test_utf8_4(exe, args, env, bc=True): argument
211 return test_utf8(exe, args, env, 3, bc)
215 # @param exe The executable.
218 def test_sigint_sigquit(exe, args, env): argument
220 child = pexpect.spawn(exe, args=args, env=env)
243 # @param exe The executable.
246 def test_eof(exe, args, env): argument
248 child = pexpect.spawn(exe, args=args, env=env)
270 # @param exe The executable.
273 def test_sigint(exe, args, env): argument
278 child = pexpect.spawn(exe, args=args, env=env)
300 # @param exe The executable.
303 def test_sigtstp(exe, args, env): argument
305 child = pexpect.spawn(exe, args=args, env=env)
336 # @param exe The executable.
339 def test_sigstop(exe, args, env): argument
341 child = pexpect.spawn(exe, args=args, env=env)
378 def test_bc_utf8_0(exe, args, env): argument
379 return test_utf8_0(exe, args, env, True)
382 def test_bc_utf8_1(exe, args, env): argument
383 return test_utf8_1(exe, args, env, True)
386 def test_bc_utf8_2(exe, args, env): argument
387 return test_utf8_2(exe, args, env, True)
390 def test_bc_utf8_3(exe, args, env): argument
391 return test_utf8_3(exe, args, env, True)
394 def test_bc_utf8_4(exe, args, env): argument
395 return test_utf8_4(exe, args, env, True)
399 # @param exe The executable.
402 def test_bc1(exe, args, env): argument
404 child = pexpect.spawn(exe, args=args, env=env)
430 # @param exe The executable.
433 def test_bc2(exe, args, env): argument
437 child = pexpect.spawn(exe, args=args, env=env)
462 # @param exe The executable.
465 def test_bc3(exe, args, env): argument
467 child = pexpect.spawn(exe, args=args, env=env)
501 # @param exe The executable.
504 def test_bc4(exe, args, env): argument
506 child = pexpect.spawn(exe, args=args, env=env)
543 # @param exe The executable.
546 def test_bc5(exe, args, env): argument
548 child = pexpect.spawn(exe, args=args, env=env)
571 # @param exe The executable.
574 def test_bc6(exe, args, env): argument
576 child = pexpect.spawn(exe, args=args, env=env)
603 # @param exe The executable.
606 def test_bc7(exe, args, env): argument
608 child = pexpect.spawn(exe, args=args, env=env)
654 # @param exe The executable.
657 def test_bc8(exe, args, env): argument
659 child = pexpect.spawn(exe, args=args, env=env)
684 # @param exe The executable.
687 def test_bc9(exe, args, env): argument
689 child = pexpect.spawn(exe, args=args, env=env)
727 # @param exe The executable.
730 def test_bc10(exe, args, env): argument
732 child = pexpect.spawn(exe, args=args, env=env)
770 # @param exe The executable.
773 def test_bc11(exe, args, env): argument
775 child = pexpect.spawn(exe, args=args, env=env)
804 # @param exe The executable.
807 def test_bc12(exe, args, env): argument
809 child = pexpect.spawn(exe, args=args, env=env)
838 def test_dc_utf8_0(exe, args, env): argument
839 return test_utf8_0(exe, args, env, False)
842 def test_dc_utf8_1(exe, args, env): argument
843 return test_utf8_1(exe, args, env, False)
846 def test_dc_utf8_2(exe, args, env): argument
847 return test_utf8_2(exe, args, env, False)
850 def test_dc_utf8_3(exe, args, env): argument
851 return test_utf8_3(exe, args, env, False)
854 def test_dc_utf8_4(exe, args, env): argument
855 return test_utf8_4(exe, args, env, False)
859 # @param exe The executable.
862 def test_dc1(exe, args, env): argument
864 child = pexpect.spawn(exe, args=args, env=env)
889 # @param exe The executable.
892 def test_dc2(exe, args, env): argument
896 child = pexpect.spawn(exe, args=args, env=env)
920 # @param exe The executable.
923 def test_dc3(exe, args, env): argument
925 child = pexpect.spawn(exe, args=args, env=env)
992 print("usage: {} [-t] dir [-a] test_idx [exe options...]".format(script))
1037 exe = sys.argv[idx] variable
1039 exe = testdir + "/../bin/" + exedir variable
1041 exebase = os.path.basename(exe)
1055 exe = [ exe, sys.argv[idx + 1:], options ] variable
1057 exe = [ exe, options ] variable
1078 child = test_array[test_idx](exe[0], exe[1:], env)