summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core')
-rw-r--r--spec/rubyspec/core/process/fixtures/setpriority.rb12
-rw-r--r--spec/rubyspec/core/process/setpriority_spec.rb37
2 files changed, 24 insertions, 25 deletions
diff --git a/spec/rubyspec/core/process/fixtures/setpriority.rb b/spec/rubyspec/core/process/fixtures/setpriority.rb
new file mode 100644
index 0000000000..cf22d85b12
--- /dev/null
+++ b/spec/rubyspec/core/process/fixtures/setpriority.rb
@@ -0,0 +1,12 @@
+case ARGV[0]
+when "process"
+ which = Process::PRIO_PROCESS
+when "group"
+ Process.setpgrp
+ which = Process::PRIO_PGRP
+end
+
+priority = Process.getpriority(which, 0)
+p priority
+p Process.setpriority(which, 0, priority + 1)
+p Process.getpriority(which, 0)
diff --git a/spec/rubyspec/core/process/setpriority_spec.rb b/spec/rubyspec/core/process/setpriority_spec.rb
index f80b289322..7b437a547a 100644
--- a/spec/rubyspec/core/process/setpriority_spec.rb
+++ b/spec/rubyspec/core/process/setpriority_spec.rb
@@ -4,18 +4,12 @@ describe "Process.setpriority" do
platform_is_not :windows do
it "sets the scheduling priority for a specified process" do
priority = Process.getpriority(Process::PRIO_PROCESS, 0)
- IO.popen('-') do |f|
- if f
- pr = Integer(f.gets)
- Integer(f.gets).should == 0
- Integer(f.gets).should == (pr+1)
- else
- pr = Process.getpriority(Process::PRIO_PROCESS, 0)
- p pr
- p Process.setpriority(Process::PRIO_PROCESS, 0, (pr + 1))
- p Process.getpriority(Process::PRIO_PROCESS, 0)
- end
- end
+
+ out = ruby_exe(fixture(__FILE__, "setpriority.rb"), args: "process")
+ out = out.lines.map { |l| Integer(l) }
+ pr = out[0]
+ out.should == [pr, 0, pr+1]
+
Process.getpriority(Process::PRIO_PROCESS, 0).should == priority
end
@@ -24,19 +18,12 @@ describe "Process.setpriority" do
platform_is_not :darwin, :freebsd do
it "sets the scheduling priority for a specified process group" do
priority = Process.getpriority(Process::PRIO_PGRP, 0)
- IO.popen('-') do |f|
- if f
- pr = Integer(f.gets)
- Integer(f.gets).should == 0
- Integer(f.gets).should == (pr+1)
- else
- Process.setpgrp
- pr = Process.getpriority(Process::PRIO_PGRP, 0)
- p pr
- p Process.setpriority(Process::PRIO_PGRP, 0, pr + 1)
- p Process.getpriority(Process::PRIO_PGRP, 0)
- end
- end
+
+ out = ruby_exe(fixture(__FILE__, "setpriority.rb"), args: "group")
+ out = out.lines.map { |l| Integer(l) }
+ pr = out[0]
+ out.should == [pr, 0, pr+1]
+
Process.getpriority(Process::PRIO_PGRP, 0).should == priority
end
end