/
UCS
/
snoopy
Обзор
Документация
Войти
/
UCS
/
snoopy
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
tests/cli/_bootstrap.sh
25 строк
616 B
Bostjan Skufca Jese
cli: Rename CLI management utility from `snoopy` to `snoopyctl`
10 авг 2022, 05:39
10 авг 2022, 05:39
f7dbc88
Код
Авторство
О чём код?
#!/bin/bash ### Configure shell # set -e set -u ### Include main _bootstrap.sh # . `dirname $BASH_SOURCE`/../_bootstrap.sh ### This dir-specific settings # # Path to the freshly built `snoopyctl` CLI tool export SNOOPY_CLI="$SNOOPY_CUR_TEST_WORKDIR/../../src/cli/snoopyctl" # This one changes the behaviour of `snoopyctl ...` CLI tool, to look for `libsnoopy.so` # in the specified location instead of the configured one. # For now, this does not change what `snoopyctl enable` puts into the `ld.so.preload` file. export SNOOPY_TEST_LIBSNOOPY_SO_PATH="$SNOOPY_CUR_TEST_WORKDIR/../../src/.libs/libsnoopy.so"