Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | test/functional/preload.lua: _set_fmode for Windows | Daniel Hahler | 2019-09-25 |
| | |||
* | functests: Check logs in lua code | ZyX | 2016-06-10 |
| | | | | | | It is otherwise impossible to determine which test failed sanitizer/valgrind check. test/functional/helpers.lua module return was changed so that tests which do not provide after_each function to get new check will automatically fail. | ||
* | Remove dependency on ffi module | Thiago de Arruda | 2016-03-07 |
| | |||
* | tests: prevent busted from reloading the ffi module and others | John Szakmeister | 2015-03-01 |
It turns out that Busted started cleaning the environment in 2.0rc5 as a result of Olivine-Labs/busted#62. This, in turn, caused the ffi module to be reloaded for each spec file, and LuaJIT doesn't appreciate it. The net effect is an assertion error in LuaJIT. By using the --helper feature of Busted, we can pre-load some modules ahead of Busted and prevent it from reloading them--making LuaJIT happy again. |