This commit is contained in:
Uli Schlachter 2016-02-14 14:32:42 +01:00
commit 191991d026
4 changed files with 55 additions and 1 deletions

30
.luacov Normal file
View File

@ -0,0 +1,30 @@
-- Configuration file for LuaCov
-- This variable is set externally
local build = os.getenv("BUILD_DIRECTORY") or error("$BUILD_DIRECTORY not set")
local lib_dir = build .. "lib/"
local function escape_pattern(str)
return string.gsub(str, "%W", "%%%1")
end
return {
statsfile = build .. "luacov.stats.out",
include = {
escape_pattern(lib_dir) .. ".+",
-- For things already having the correct path
-- (happens with integration tests)
"^lib/",
},
-- configuration for luacov-coveralls reporter
coveralls = {
pathcorrect = {
{ escape_pattern(lib_dir), "lib/"},
},
},
}
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

View File

@ -5,7 +5,7 @@ env:
matrix: matrix:
# Note: luarocks does not work with Lua 5.0. # Note: luarocks does not work with Lua 5.0.
- LUA=5.1 LGIVER= LUANAME=lua5.1 - LUA=5.1 LGIVER= LUANAME=lua5.1
- LUA=5.2 LGIVER= LUANAME=lua5.2 BUILD_APIDOC=true - LUA=5.2 LGIVER= LUANAME=lua5.2 BUILD_APIDOC=true DO_COVERAGE=true
- LUA=5.2 LGIVER=0.7.1 LUANAME=lua5.2 - LUA=5.2 LGIVER=0.7.1 LUANAME=lua5.2
# luajit: requires --lua-suffix=jit-2.0.0-beta9 in Ubuntu precise. # luajit: requires --lua-suffix=jit-2.0.0-beta9 in Ubuntu precise.
# Later versions seem to provide a `luajit` symlink, so `jit` would be enough. # Later versions seem to provide a `luajit` symlink, so `jit` would be enough.
@ -73,6 +73,9 @@ install:
- travis_retry sudo luarocks install ldoc - travis_retry sudo luarocks install ldoc
- travis_retry sudo luarocks install lua-discount - travis_retry sudo luarocks install lua-discount
# Instal luacov-coveralls for code coverage testing.
- if [ "$DO_COVERAGE" = "true" ]; then sudo luarocks install luacov-coveralls; fi
# Determine custom version. # Determine custom version.
- export AWESOME_VERSION="${TRAVIS_BRANCH}-g$(git rev-parse --short HEAD)" - export AWESOME_VERSION="${TRAVIS_BRANCH}-g$(git rev-parse --short HEAD)"
- 'if [ "$TRAVIS_PULL_REQUEST" != false ]; then AWESOME_VERSION="${AWESOME_VERSION}-PR${TRAVIS_PULL_REQUEST}"; fi' - 'if [ "$TRAVIS_PULL_REQUEST" != false ]; then AWESOME_VERSION="${AWESOME_VERSION}-PR${TRAVIS_PULL_REQUEST}"; fi'
@ -80,7 +83,15 @@ install:
script: script:
- export CMAKE_ARGS="-DLUA_LIBRARY=${LUALIBRARY} -DLUA_INCLUDE_DIR=${LUAINCLUDE} -D OVERRIDE_VERSION=$AWESOME_VERSION" - export CMAKE_ARGS="-DLUA_LIBRARY=${LUALIBRARY} -DLUA_INCLUDE_DIR=${LUAINCLUDE} -D OVERRIDE_VERSION=$AWESOME_VERSION"
- make && sudo env PATH=$PATH make install && awesome --version && make check - make && sudo env PATH=$PATH make install && awesome --version && make check
- |
if [ "$DO_COVERAGE" = "true" ]; then
make check-coverage || exit 1;
sed -i "1 i\\require('luacov.runner')('"$PWD"/.luacov')" build/awesomerc.lua || exit 1
BUILD_DIRECTORY="" tests/run.sh || exit 1
fi
after_success: after_success:
# Push updated API docs for relevant branches, e.g. non-PRs builds on master. # Push updated API docs for relevant branches, e.g. non-PRs builds on master.
- if [ "$BUILD_APIDOC" = "true" ]; then build-utils/travis-apidoc.sh; fi - if [ "$BUILD_APIDOC" = "true" ]; then build-utils/travis-apidoc.sh; fi
# Push code coverage information
- if [ "$DO_COVERAGE" = "true" ]; then BUILD_DIRECTORY="$(pwd)/$(readlink build)/" luacov-coveralls --verbose --merge; fi

View File

@ -368,6 +368,14 @@ if(BUSTED_EXECUTABLE)
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
COMMENT "Running unit tests" COMMENT "Running unit tests"
VERBATIM) VERBATIM)
add_custom_target(check-coverage
"BUILD_DIRECTORY=${CMAKE_BINARY_DIR}/"
${BUSTED_EXECUTABLE} "--helper=${CMAKE_SOURCE_DIR}/spec/preload.lua"
"--lpath=${CMAKE_BINARY_DIR}/lib/?.lua;${CMAKE_BINARY_DIR}/lib/?/init.lua;spec/?.lua"
"--coverage"
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
COMMENT "Running unit tests under LuaCov"
VERBATIM)
endif() endif()
add_custom_target(check-integration add_custom_target(check-integration
"${CMAKE_SOURCE_DIR}/tests/run.sh" "${CMAKE_SOURCE_DIR}/tests/run.sh"

View File

@ -46,6 +46,7 @@ collectgarbage("stop")
-- The first iteration starts xterm, the second keeps a weak reference to it and -- The first iteration starts xterm, the second keeps a weak reference to it and
-- closes it and the last one checks that the client object is GC'able. -- closes it and the last one checks that the client object is GC'able.
local objs = nil local objs = nil
local second_call = false
local steps = { local steps = {
function(count) function(count)
if count == 1 then if count == 1 then
@ -56,6 +57,10 @@ local steps = {
objs = setmetatable({ c }, { __mode = "v" }) objs = setmetatable({ c }, { __mode = "v" })
c:kill() c:kill()
end end
elseif not second_call then
-- Wait for one iteration so that gears.timer handles other delayed
-- calls (= the tasklist updates)
second_call = true
else else
assert(#objs == 1) assert(#objs == 1)