blob: c0207b8b62d4d33480e7a336f9ff9045df8eacc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#
# 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.errno" do
module LibTest
extend FFI::Library
ffi_lib TestLibrary::PATH
attach_function :setLastError, [ :int ], :void
attach_function :setErrno, [ :int ], :void
end
it "FFI.errno contains errno from last function, FFI::LastError.winapi_error works differently per OS" do
# setup
LibTest.setErrno(0)
LibTest.setLastError(0)
LibTest.setLastError(0x12345678)
# cases
case FFI::Platform::OS
when "cygwin"
expect(FFI::LastError.winapi_error).to eq(0x12345678)
LibTest.setErrno(0x2A)
expect(FFI.errno).to eq(0x2A)
when "windows"
expect(FFI::LastError.winapi_error).to eq(0x12345678)
expect(FFI.errno).to eq(0x12345678)
else
# Linux, and else
expect {FFI::LastError.winapi_error}.to raise_exception(NoMethodError)
expect {FFI::LastError.winapi_error = 0}.to raise_exception(NoMethodError)
expect(FFI.errno).to eq(0x12345678)
end
end
it "works in Ractor", :ractor do
res = Ractor.new do
LibTest.setLastError(0x12345678)
FFI.errno
end.take
expect(res).to eq(0x12345678)
end
end
|