From a07c9ecd49c5ab64040116c55279e5c88ede31af Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Thu, 4 Jul 2019 10:40:41 -0400 Subject: [PATCH] tests: Remove stale tests launcher Those 2 unused test launcher scripts were accidentaly commited when the test suite was reworked. Signed-off-by: Michael Jeanson Change-Id: Iadcddf7b91acd021298bee68d14985924f3244b8 Reviewed-on: https://review.lttng.org/c/babeltrace/+/1625 Reviewed-by: Francis Deslauriers Reviewed-by: Philippe Proulx CI-Build: Francis Deslauriers Tested-by: jenkins --- tests/lib/test_plugin_complete | 27 ------------------------ tests/lib/trace-ir/test_trace_ir | 36 -------------------------------- 2 files changed, 63 deletions(-) delete mode 100755 tests/lib/test_plugin_complete delete mode 100755 tests/lib/trace-ir/test_trace_ir diff --git a/tests/lib/test_plugin_complete b/tests/lib/test_plugin_complete deleted file mode 100755 index e3e730fd..00000000 --- a/tests/lib/test_plugin_complete +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash -# -# Copyright (C) 2017 Philippe Proulx -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; only version 2 -# of the License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# - -NO_SH_TAP=1 -. "/home/mjeanson/Git/lttng/babeltrace/master/tests/utils/common.sh" - -curdir="$(cd -P "$(dirname "$0")" >/dev/null && pwd)" - -plugin_dir="${curdir}/test-plugin-plugins/.libs" - -"${curdir}/test_plugin" "$plugin_dir" diff --git a/tests/lib/trace-ir/test_trace_ir b/tests/lib/trace-ir/test_trace_ir deleted file mode 100755 index 02f8455d..00000000 --- a/tests/lib/trace-ir/test_trace_ir +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash -# -# Copyright (C) 2017 - Philippe Proulx -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; only version 2 -# of the License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# - -NO_SH_TAP=1 -. "/home/mjeanson/Git/lttng/babeltrace/master/tests/utils/common.sh" - -PYTHON_BUILD_DIR="${BT_BUILD_PATH}/src/bindings/python/bt2/build/build_lib" -TESTS_UTILS_PYTHON_DIR="${BT_SRC_PATH}/tests/utils/python" -TESTRUNNER_PY="${BT_SRC_PATH}/tests/utils/python/testrunner.py" -THIS_DIR="${BT_SRC_PATH}/tests/lib/trace-ir" - -if [ "x${MSYSTEM}" != "x" ]; then - export PATH="${BT_BUILD_PATH}/src/lib/.libs:${PATH}" -else - export LD_LIBRARY_PATH="${BT_BUILD_PATH}/src/lib/.libs:${LD_LIBRARY_PATH}" -fi - -PYTHONPATH="${PYTHON_BUILD_DIR}:${TESTS_UTILS_PYTHON_DIR}" \ - "/usr/bin/python3" "${TESTRUNNER_PY}" "${THIS_DIR}" -exit $? -- 2.34.1