You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
664 B
33 lines
664 B
#!/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
|
|
|
|
LIBRARY=$(ldd bcc-lua | grep luajit)
|
|
if [ $? -ne 0 -o -z "$LIBRARY" ] ; then
|
|
fail "bcc-lua depends on libluajit"
|
|
fi
|
|
|
|
rm -f probe.lua
|
|
echo "return function(BPF) print(\"Hello world\") end" > probe.lua
|
|
|
|
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
|