blob: e524ab34aa84fbf0628a4ff5e4edfac2d073d4c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-- 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.testutil')
require('test.functional.ui.screen')
if t.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
|