blob: 9f17ecd66c164365547b88a3575d747d549606ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-- Modules loaded here will NOT be cleared and reloaded by Busted.
-- Busted started doing this to help provide more isolation. See issue #62
-- for more information about this.
local t = require('test.functional.testutil')(nil)
require('test.functional.ui.screen')
local is_os = t.is_os
if is_os('win') then
local ffi = require('ffi')
ffi.cdef [[
typedef int errno_t;
errno_t _set_fmode(int mode);
]]
ffi.C._set_fmode(0x8000)
end
|