Sha256: a0196bd2929ee512b05bce620343227b37883394d8807addcbe2f07e6d3619a3

Contents?: true

Size: 852 Bytes

Versions: 52

Compression:

Stored size: 852 Bytes

Contents

describe :process_times, :shared => true do
  it "returns a Struct::Tms" do
    @object.send(@method).should be_kind_of(Struct::Tms)
  end

  it "returns current cpu times" do

    t = @object.send @method

    # Do busy work for a wall-clock interval.
    start = Time.now
    1 until (Time.now - start) > 0.5

    # Ensure times is larger. NOTE that there is no
    # guarantee of an upper bound since anything may be
    # happening at the OS level, so we ONLY check that at
    # least an interval has elapsed. Also, we are assuming
    # there is a correlation between wall clock time and
    # process time. In practice, there is an observed
    # discrepancy often 10% or greater. In other words,
    # this is a very fuzzy test.
    t2 = @object.send @method
    diff = (t2.utime + t2.stime) - (t.utime + t.stime)
    diff.should > 0
  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
rhodes-3.2.2 spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.2.beta spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.1 spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.0 spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.0.beta.9 spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.0.beta.8 spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.0.beta.7 spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.0.beta.6 spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.0.beta.5 spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.0.beta.4 spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.0.beta.2 spec/framework_spec/app/spec/shared/process/times.rb
rhodes-3.2.0.beta.1 spec/framework_spec/app/spec/shared/process/times.rb