Sha256: 7cb23ac8f2790057c365110e5d78064182afde6c2637125f8f712e84c4cf136e

Contents?: true

Size: 1.24 KB

Versions: 79

Compression:

Stored size: 1.24 KB

Contents

#
# This file is part of ruby-ffi.
# For licensing, see LICENSE.SPECS
#

require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))

describe FFI::Struct do
  it "packed :char followed by :int should have size of 5" do
    expect(Class.new(FFI::Struct) do
      packed
      layout :c, :char, :i, :int
    end.size).to eq(5)
  end

  it "packed :char followed by :int should have alignment of 1" do
    expect(Class.new(FFI::Struct) do
      packed
      layout :c, :char, :i, :int
    end.alignment).to eq(1)
  end

  it "packed(2) :char followed by :int should have size of 6" do
    expect(Class.new(FFI::Struct) do
      packed 2
      layout :c, :char, :i, :int
    end.size).to eq(6)
  end

  it "packed(2)  :char followed by :int should have alignment of 2" do
    expect(Class.new(FFI::Struct) do
      packed 2
      layout :c, :char, :i, :int
    end.alignment).to eq(2)
  end

  it "packed :short followed by int should have size of 6" do
    expect(Class.new(FFI::Struct) do
      packed
      layout :s, :short, :i, :int
    end.size).to eq(6)
  end

  it "packed :short followed by int should have alignment of 1" do
    expect(Class.new(FFI::Struct) do
      packed
      layout :s, :short, :i, :int
    end.alignment).to eq(1)
  end
end

Version data entries

79 entries across 77 versions & 14 rubygems

Version Path
tdiary-5.0.4 vendor/bundle/gems/ffi-1.9.18/spec/ffi/struct_packed_spec.rb
ffi-1.9.18-x86-mingw32 spec/ffi/struct_packed_spec.rb
ffi-1.9.18-x64-mingw32 spec/ffi/struct_packed_spec.rb
ffi-1.9.18 spec/ffi/struct_packed_spec.rb
ffi-1.9.17-x64-mingw32 spec/ffi/struct_packed_spec.rb
ffi-1.9.17-x86-mingw32 spec/ffi/struct_packed_spec.rb
ffi-1.9.17 spec/ffi/struct_packed_spec.rb
ffi-1.9.16-x64-mingw32 spec/ffi/struct_packed_spec.rb
ffi-1.9.16-x86-mingw32 spec/ffi/struct_packed_spec.rb
ffi-1.9.16 spec/ffi/struct_packed_spec.rb
ffi-1.9.15 spec/ffi/struct_packed_spec.rb
vagrant-unbundled-1.9.1.1 vendor/bundle/ruby/2.4.0/gems/ffi-1.9.10/spec/ffi/struct_packed_spec.rb
arcabouco-0.2.13 vendor/bundle/gems/ffi-1.9.14/spec/ffi/struct_packed_spec.rb
gameboard-3.1.0 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.14/spec/ffi/struct_packed_spec.rb
gameboard-3.0.0 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.14/spec/ffi/struct_packed_spec.rb
tdiary-5.0.2 vendor/bundle/gems/ffi-1.9.14/spec/ffi/struct_packed_spec.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/struct_packed_spec.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/struct_packed_spec.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/struct_packed_spec.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/struct_packed_spec.rb