Skip to content

Commit

Permalink
Showing 4 changed files with 110 additions and 110 deletions.
38 changes: 19 additions & 19 deletions spec/tags/ruby/core/kernel/spawn_tags.txt
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
fails:Kernel.spawn joins a new process group if :pgroup => true
fails:Kernel.spawn redirects STDERR to the given file if :err => String
fails:Kernel.spawn joins a new process group if pgroup: true
fails:Kernel.spawn redirects STDERR to the given file if err: String
windows(JRUBY-4354):Kernel.spawn executes the given command
windows(JRUBY-4354):Kernel.spawn returns the process ID of the new process as a Fixnum
windows(JRUBY-4354):Kernel.spawn returns immediately
fails:Kernel.spawn redirects STDOUT to the given file if :out => String
fails:Kernel.spawn redirects STDOUT to the given file if out: String
fails(compiler):Kernel.spawn does NOT redirect both STDERR and STDOUT at the time to the given name
fails:Kernel#spawn calls #to_str to convert the environment keys
fails:Kernel#spawn calls #to_str to convert the environment values
fails:Kernel#spawn joins a new process group if :pgroup => true
fails:Kernel#spawn joins a new process group if :pgroup => 0
fails:Kernel#spawn joins a new process group if pgroup: true
fails:Kernel#spawn joins a new process group if pgroup: 0
fails:Kernel#spawn sets the umask if given the :umask option
critical(runs very long before failing):Kernel#spawn redirects STDOUT to the given file if :out => String
critical(runs very long before failing):Kernel#spawn redirects STDOUT to the given file if :out => [String name, String mode]
critical(runs very long before failing):Kernel#spawn redirects STDERR to the given file if :err => String
critical(runs very long before failing):Kernel#spawn redirects STDOUT to the given file if out: String
critical(runs very long before failing):Kernel#spawn redirects STDOUT to the given file if out: [String name, String mode]
critical(runs very long before failing):Kernel#spawn redirects STDERR to the given file if err: String
fails:Kernel#spawn does NOT redirect both STDERR and STDOUT at the time to the given name
fails:Kernel#spawn raises an Errno::EACCES when passed a directory
fails:Kernel#spawn with a command array uses the first element as the command name and the second as the argv[0] value
fails:Kernel.spawn with a command array does not subject the arguments to shell expansion
fails:Kernel#spawn with a command array calls #to_ary to convert the argument to an Array
fails:Kernel.spawn calls #to_str to convert the environment keys
fails:Kernel.spawn calls #to_str to convert the environment values
fails:Kernel.spawn joins a new process group if :pgroup => 0
fails:Kernel.spawn joins a new process group if pgroup: 0
fails:Kernel.spawn sets the umask if given the :umask option
fails:Kernel.spawn raises an Errno::EACCES when passed a directory
fails:Kernel.spawn raises an ArgumentError when passed a string key in options
@@ -41,15 +41,15 @@ fails:Kernel.spawn when passed :chdir calls #to_path to convert the :chdir value
fails:Kernel.spawn with Integer option keys maps the key to a file descriptor in the child that inherits the file descriptor from the parent specified by the value
fails:Kernel#spawn does not unset other environment variables when given a false :unsetenv_others option
fails:Kernel#spawn does not unset environment variables included in the environment hash
fails:Kernel#spawn joins the current process if :pgroup => false
fails:Kernel#spawn joins the current process if pgroup: false
fails:Kernel.spawn does not unset other environment variables when given a false :unsetenv_others option
fails:Kernel.spawn does not unset environment variables included in the environment hash
fails:Kernel.spawn joins the current process if :pgroup => false
fails:Kernel#spawn redirects STDOUT to the given file if :out => String
fails:Kernel#spawn redirects STDERR to the given file if :err => String
fails:Kernel#spawn when passed :close_others => false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Kernel.spawn when passed :close_others => false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Kernel#spawn when passed :close_others => false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Kernel.spawn when passed :close_others => false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Kernel#spawn redirects STDOUT to the given file if :out => [String name, String mode]
fails:Kernel.spawn redirects STDOUT to the given file if :out => [String name, String mode]
fails:Kernel.spawn joins the current process if pgroup: false
fails:Kernel#spawn redirects STDOUT to the given file if out: String
fails:Kernel#spawn redirects STDERR to the given file if err: String
fails:Kernel#spawn when passed close_others: false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Kernel.spawn when passed close_others: false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Kernel#spawn when passed close_others: false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Kernel.spawn when passed close_others: false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Kernel#spawn redirects STDOUT to the given file if out: [String name, String mode]
fails:Kernel.spawn redirects STDOUT to the given file if out: [String name, String mode]
20 changes: 10 additions & 10 deletions spec/tags/ruby/core/process/spawn_tags.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
fails:Process.spawn calls #to_str to convert the environment keys
fails:Process.spawn calls #to_str to convert the environment values
fails:Process.spawn joins a new process group if :pgroup => true
fails:Process.spawn joins a new process group if :pgroup => 0
fails:Process.spawn joins a new process group if pgroup: true
fails:Process.spawn joins a new process group if pgroup: 0
fails:Process.spawn sets the umask if given the :umask option
critical(runs very long before failing):Process.spawn redirects STDOUT to the given file if :out => String
critical(runs very long before failing):Process.spawn redirects STDERR to the given file if :err => String
critical(runs very long before failing):Process.spawn redirects STDOUT to the given file if out: String
critical(runs very long before failing):Process.spawn redirects STDERR to the given file if err: String
fails:Process.spawn does NOT redirect both STDERR and STDOUT at the time to the given name
fails:Process.spawn raises an Errno::EACCES when passed a directory
fails:Process.spawn with a command array uses the first element as the command name and the second as the argv[0] value
fails:Process.spawn with a command array calls #to_ary to convert the argument to an Array
fails:Process.spawn with Integer option keys maps the key to a file descriptor in the child that inherits the file descriptor from the parent specified by the value
fails:Process.spawn does not unset other environment variables when given a false :unsetenv_others option
fails:Process.spawn does not unset environment variables included in the environment hash
fails:Process.spawn joins the current process if :pgroup => false
fails:Process.spawn redirects STDOUT to the given file if :out => String
fails:Process.spawn redirects STDERR to the given file if :err => String
fails:Process.spawn when passed :close_others => false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Process.spawn when passed :close_others => false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Process.spawn redirects STDOUT to the given file if :out => [String name, String mode]
fails:Process.spawn joins the current process if pgroup: false
fails:Process.spawn redirects STDOUT to the given file if out: String
fails:Process.spawn redirects STDERR to the given file if err: String
fails:Process.spawn when passed close_others: false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Process.spawn when passed close_others: false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Process.spawn redirects STDOUT to the given file if out: [String name, String mode]
108 changes: 54 additions & 54 deletions spec/truffle/tags/core/kernel/spawn_tags.txt
Original file line number Diff line number Diff line change
@@ -16,22 +16,22 @@ fails:Kernel#spawn does not unset other environment variables when given a false
fails:Kernel#spawn does not unset other environment variables when given a nil :unsetenv_others option
fails:Kernel#spawn does not unset environment variables included in the environment hash
fails:Kernel#spawn joins the current process group by default
fails:Kernel#spawn joins the current process if :pgroup => false
fails:Kernel#spawn joins the current process if :pgroup => nil
fails:Kernel#spawn joins a new process group if :pgroup => true
fails:Kernel#spawn joins a new process group if :pgroup => 0
fails:Kernel#spawn joins the specified process group if :pgroup => pgid
fails:Kernel#spawn joins the current process if pgroup: false
fails:Kernel#spawn joins the current process if pgroup: nil
fails:Kernel#spawn joins a new process group if pgroup: true
fails:Kernel#spawn joins a new process group if pgroup: 0
fails:Kernel#spawn joins the specified process group if pgroup: pgid
fails:Kernel#spawn raises an ArgumentError if given a negative :pgroup option
fails:Kernel#spawn raises a TypeError if given a symbol as :pgroup option
fails:Kernel#spawn uses the current working directory as its working directory
fails:Kernel#spawn uses the current umask by default
fails:Kernel#spawn sets the umask if given the :umask option
fails:Kernel#spawn redirects STDOUT to the given file descriptior if :out => Fixnum
fails:Kernel#spawn redirects STDOUT to the given file if :out => IO
fails:Kernel#spawn redirects STDOUT to the given file if :out => String
fails:Kernel#spawn redirects STDERR to the given file descriptior if :err => Fixnum
fails:Kernel#spawn redirects STDERR to the given file descriptor if :err => IO
fails:Kernel#spawn redirects STDERR to the given file if :err => String
fails:Kernel#spawn redirects STDOUT to the given file descriptior if out: Fixnum
fails:Kernel#spawn redirects STDOUT to the given file if out: IO
fails:Kernel#spawn redirects STDOUT to the given file if out: String
fails:Kernel#spawn redirects STDERR to the given file descriptior if err: Fixnum
fails:Kernel#spawn redirects STDERR to the given file descriptor if err: IO
fails:Kernel#spawn redirects STDERR to the given file if err: String
fails:Kernel#spawn redirects both STDERR and STDOUT to the given file descriptior
fails:Kernel#spawn redirects both STDERR and STDOUT to the given IO
fails:Kernel#spawn does NOT redirect both STDERR and STDOUT at the time to the given name
@@ -82,22 +82,22 @@ fails:Kernel.spawn does not unset other environment variables when given a false
fails:Kernel.spawn does not unset other environment variables when given a nil :unsetenv_others option
fails:Kernel.spawn does not unset environment variables included in the environment hash
fails:Kernel.spawn joins the current process group by default
fails:Kernel.spawn joins the current process if :pgroup => false
fails:Kernel.spawn joins the current process if :pgroup => nil
fails:Kernel.spawn joins a new process group if :pgroup => true
fails:Kernel.spawn joins a new process group if :pgroup => 0
fails:Kernel.spawn joins the specified process group if :pgroup => pgid
fails:Kernel.spawn joins the current process if pgroup: false
fails:Kernel.spawn joins the current process if pgroup: nil
fails:Kernel.spawn joins a new process group if pgroup: true
fails:Kernel.spawn joins a new process group if pgroup: 0
fails:Kernel.spawn joins the specified process group if pgroup: pgid
fails:Kernel.spawn raises an ArgumentError if given a negative :pgroup option
fails:Kernel.spawn raises a TypeError if given a symbol as :pgroup option
fails:Kernel.spawn uses the current working directory as its working directory
fails:Kernel.spawn uses the current umask by default
fails:Kernel.spawn sets the umask if given the :umask option
fails:Kernel.spawn redirects STDOUT to the given file descriptior if :out => Fixnum
fails:Kernel.spawn redirects STDOUT to the given file if :out => IO
fails:Kernel.spawn redirects STDOUT to the given file if :out => String
fails:Kernel.spawn redirects STDERR to the given file descriptior if :err => Fixnum
fails:Kernel.spawn redirects STDERR to the given file descriptor if :err => IO
fails:Kernel.spawn redirects STDERR to the given file if :err => String
fails:Kernel.spawn redirects STDOUT to the given file descriptior if out: Fixnum
fails:Kernel.spawn redirects STDOUT to the given file if out: IO
fails:Kernel.spawn redirects STDOUT to the given file if out: String
fails:Kernel.spawn redirects STDERR to the given file descriptior if err: Fixnum
fails:Kernel.spawn redirects STDERR to the given file descriptor if err: IO
fails:Kernel.spawn redirects STDERR to the given file if err: String
fails:Kernel.spawn redirects both STDERR and STDOUT to the given file descriptior
fails:Kernel.spawn redirects both STDERR and STDOUT to the given IO
fails:Kernel.spawn does NOT redirect both STDERR and STDOUT at the time to the given name
@@ -135,35 +135,35 @@ fails:Kernel#spawn with Integer option keys maps the key to a file descriptor in
fails:Kernel.spawn with Integer option keys maps the key to a file descriptor in the child that inherits the file descriptor from the parent specified by the value
fails(windows):Kernel#spawn raises an ArgumentError if given :pgroup option
fails(windows):Kernel.spawn raises an ArgumentError if given :pgroup option
slow:Kernel#spawn when passed :close_others => true does not close STDIN
slow:Kernel#spawn when passed :close_others => true does not close STDOUT
slow:Kernel#spawn when passed :close_others => true does not close STDERR
slow:Kernel#spawn when passed :close_others => false does not close STDIN
slow:Kernel#spawn when passed :close_others => false does not close STDOUT
slow:Kernel#spawn when passed :close_others => false does not close STDERR
slow:Kernel.spawn when passed :close_others => true does not close STDIN
slow:Kernel.spawn when passed :close_others => true does not close STDOUT
slow:Kernel.spawn when passed :close_others => true does not close STDERR
slow:Kernel.spawn when passed :close_others => false does not close STDIN
slow:Kernel.spawn when passed :close_others => false does not close STDOUT
slow:Kernel.spawn when passed :close_others => false does not close STDERR
fails:Kernel#spawn when passed :close_others => true closes file descriptors >= 3 in the child process
fails:Kernel#spawn when passed :close_others => false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Kernel#spawn when passed :close_others => false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Kernel.spawn when passed :close_others => true closes file descriptors >= 3 in the child process
fails:Kernel.spawn when passed :close_others => false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Kernel.spawn when passed :close_others => false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Kernel#spawn when passed :close_others => true does not close STDIN
fails:Kernel#spawn when passed :close_others => true does not close STDOUT
fails:Kernel#spawn when passed :close_others => true does not close STDERR
fails:Kernel#spawn when passed :close_others => false does not close STDIN
fails:Kernel#spawn when passed :close_others => false does not close STDOUT
fails:Kernel#spawn when passed :close_others => false does not close STDERR
fails:Kernel.spawn when passed :close_others => true does not close STDIN
fails:Kernel.spawn when passed :close_others => true does not close STDOUT
fails:Kernel.spawn when passed :close_others => true does not close STDERR
fails:Kernel.spawn when passed :close_others => false does not close STDIN
fails:Kernel.spawn when passed :close_others => false does not close STDOUT
fails:Kernel.spawn when passed :close_others => false does not close STDERR
fails:Kernel#spawn redirects STDOUT to the given file if :out => [String name, String mode]
fails:Kernel.spawn redirects STDOUT to the given file if :out => [String name, String mode]
slow:Kernel#spawn when passed close_others: true does not close STDIN
slow:Kernel#spawn when passed close_others: true does not close STDOUT
slow:Kernel#spawn when passed close_others: true does not close STDERR
slow:Kernel#spawn when passed close_others: false does not close STDIN
slow:Kernel#spawn when passed close_others: false does not close STDOUT
slow:Kernel#spawn when passed close_others: false does not close STDERR
slow:Kernel.spawn when passed close_others: true does not close STDIN
slow:Kernel.spawn when passed close_others: true does not close STDOUT
slow:Kernel.spawn when passed close_others: true does not close STDERR
slow:Kernel.spawn when passed close_others: false does not close STDIN
slow:Kernel.spawn when passed close_others: false does not close STDOUT
slow:Kernel.spawn when passed close_others: false does not close STDERR
fails:Kernel#spawn when passed close_others: true closes file descriptors >= 3 in the child process
fails:Kernel#spawn when passed close_others: false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Kernel#spawn when passed close_others: false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Kernel.spawn when passed close_others: true closes file descriptors >= 3 in the child process
fails:Kernel.spawn when passed close_others: false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Kernel.spawn when passed close_others: false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Kernel#spawn when passed close_others: true does not close STDIN
fails:Kernel#spawn when passed close_others: true does not close STDOUT
fails:Kernel#spawn when passed close_others: true does not close STDERR
fails:Kernel#spawn when passed close_others: false does not close STDIN
fails:Kernel#spawn when passed close_others: false does not close STDOUT
fails:Kernel#spawn when passed close_others: false does not close STDERR
fails:Kernel.spawn when passed close_others: true does not close STDIN
fails:Kernel.spawn when passed close_others: true does not close STDOUT
fails:Kernel.spawn when passed close_others: true does not close STDERR
fails:Kernel.spawn when passed close_others: false does not close STDIN
fails:Kernel.spawn when passed close_others: false does not close STDOUT
fails:Kernel.spawn when passed close_others: false does not close STDERR
fails:Kernel#spawn redirects STDOUT to the given file if out: [String name, String mode]
fails:Kernel.spawn redirects STDOUT to the given file if out: [String name, String mode]
54 changes: 27 additions & 27 deletions spec/truffle/tags/core/process/spawn_tags.txt
Original file line number Diff line number Diff line change
@@ -15,22 +15,22 @@ fails:Process.spawn does not unset other environment variables when given a fals
fails:Process.spawn does not unset other environment variables when given a nil :unsetenv_others option
fails:Process.spawn does not unset environment variables included in the environment hash
fails:Process.spawn joins the current process group by default
fails:Process.spawn joins the current process if :pgroup => false
fails:Process.spawn joins the current process if :pgroup => nil
fails:Process.spawn joins a new process group if :pgroup => true
fails:Process.spawn joins a new process group if :pgroup => 0
fails:Process.spawn joins the specified process group if :pgroup => pgid
fails:Process.spawn joins the current process if pgroup: false
fails:Process.spawn joins the current process if pgroup: nil
fails:Process.spawn joins a new process group if pgroup: true
fails:Process.spawn joins a new process group if pgroup: 0
fails:Process.spawn joins the specified process group if pgroup: pgid
fails:Process.spawn raises an ArgumentError if given a negative :pgroup option
fails:Process.spawn raises a TypeError if given a symbol as :pgroup option
fails:Process.spawn uses the current working directory as its working directory
fails:Process.spawn uses the current umask by default
fails:Process.spawn sets the umask if given the :umask option
fails:Process.spawn redirects STDOUT to the given file descriptior if :out => Fixnum
fails:Process.spawn redirects STDOUT to the given file if :out => IO
fails:Process.spawn redirects STDOUT to the given file if :out => String
fails:Process.spawn redirects STDERR to the given file descriptior if :err => Fixnum
fails:Process.spawn redirects STDERR to the given file descriptor if :err => IO
fails:Process.spawn redirects STDERR to the given file if :err => String
fails:Process.spawn redirects STDOUT to the given file descriptior if out: Fixnum
fails:Process.spawn redirects STDOUT to the given file if out: IO
fails:Process.spawn redirects STDOUT to the given file if out: String
fails:Process.spawn redirects STDERR to the given file descriptior if err: Fixnum
fails:Process.spawn redirects STDERR to the given file descriptor if err: IO
fails:Process.spawn redirects STDERR to the given file if err: String
fails:Process.spawn redirects both STDERR and STDOUT to the given file descriptior
fails:Process.spawn redirects both STDERR and STDOUT to the given IO
fails:Process.spawn does NOT redirect both STDERR and STDOUT at the time to the given name
@@ -66,19 +66,19 @@ fails:Process.spawn when passed :chdir changes to the directory passed for :chdi
fails:Process.spawn when passed :chdir calls #to_path to convert the :chdir value
fails:Process.spawn with Integer option keys maps the key to a file descriptor in the child that inherits the file descriptor from the parent specified by the value
fails(windows):Process.spawn raises an ArgumentError if given :pgroup option
slow:Process.spawn when passed :close_others => true does not close STDIN
slow:Process.spawn when passed :close_others => true does not close STDOUT
slow:Process.spawn when passed :close_others => true does not close STDERR
slow:Process.spawn when passed :close_others => false does not close STDIN
slow:Process.spawn when passed :close_others => false does not close STDOUT
slow:Process.spawn when passed :close_others => false does not close STDERR
fails:Process.spawn when passed :close_others => true closes file descriptors >= 3 in the child process
fails:Process.spawn when passed :close_others => false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Process.spawn when passed :close_others => false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Process.spawn when passed :close_others => true does not close STDIN
fails:Process.spawn when passed :close_others => true does not close STDOUT
fails:Process.spawn when passed :close_others => true does not close STDERR
fails:Process.spawn when passed :close_others => false does not close STDIN
fails:Process.spawn when passed :close_others => false does not close STDOUT
fails:Process.spawn when passed :close_others => false does not close STDERR
fails:Process.spawn redirects STDOUT to the given file if :out => [String name, String mode]
slow:Process.spawn when passed close_others: true does not close STDIN
slow:Process.spawn when passed close_others: true does not close STDOUT
slow:Process.spawn when passed close_others: true does not close STDERR
slow:Process.spawn when passed close_others: false does not close STDIN
slow:Process.spawn when passed close_others: false does not close STDOUT
slow:Process.spawn when passed close_others: false does not close STDERR
fails:Process.spawn when passed close_others: true closes file descriptors >= 3 in the child process
fails:Process.spawn when passed close_others: false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Process.spawn when passed close_others: false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Process.spawn when passed close_others: true does not close STDIN
fails:Process.spawn when passed close_others: true does not close STDOUT
fails:Process.spawn when passed close_others: true does not close STDERR
fails:Process.spawn when passed close_others: false does not close STDIN
fails:Process.spawn when passed close_others: false does not close STDOUT
fails:Process.spawn when passed close_others: false does not close STDERR
fails:Process.spawn redirects STDOUT to the given file if out: [String name, String mode]

0 comments on commit bca3243

Please sign in to comment.