Skip to content

Commit

Permalink
bcc-lua: Add test for standalone bcc-lua
Browse files Browse the repository at this point in the history
  • Loading branch information
vmg committed Apr 1, 2016
1 parent 3e81d3e commit 8f412d2
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/lua/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ if(LUAJIT)

add_test(NAME lua_test_dump WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMAND ${TEST_WRAPPER} lua_test_dump sudo ${LUAJIT} test_dump.lua)

add_test(NAME lua_test_standalone WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/test_standalone.sh)
endif()
45 changes: 45 additions & 0 deletions tests/lua/test_standalone.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#!/bin/bash
# Copyright (c) GitHub, Inc.
# Licensed under the Apache License, Version 2.0 (the "License")

set -xe
cd "src/lua"

function fail {
echo "test failed: $1" >&2
exit 1
}

if [[ ! -x bcc-lua ]]; then
echo "bcc-lua not built --- skipping"
exit 0
fi

if ldd bcc-lua | grep -q luajit; then
fail "bcc-lua depends on libluajit"
fi

rm -f libbcc.so probe.lua
echo "return function(BPF) print(\"Hello world\") end" > probe.lua

if ./bcc-lua "probe.lua"; then
fail "bcc-lua runs without libbcc.so"
fi

if ! env LIBBCC_SO_PATH=../cc/libbcc.so ./bcc-lua "probe.lua"; then
fail "bcc-lua cannot load libbcc.so through the environment"
fi

ln -s ../cc/libbcc.so

if ! ./bcc-lua "probe.lua"; then
fail "bcc-lua cannot find local libbcc.so"
fi

PROBE="../../../examples/lua/offcputime.lua"

if ! sudo ./bcc-lua "$PROBE" -d 1 >/dev/null 2>/dev/null; then
fail "bcc-lua cannot run complex probes"
fi

rm -f libbcc.so probe.lua

0 comments on commit 8f412d2

Please sign in to comment.