X-Git-Url: http://drtracing.org/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fcli%2Ftest_exit_status;h=905a2eb37a370aa12f4b36802229ffe88b5e2c26;hb=58c8f6e510c9f7cadda52499d4e7dda27d5d8ec5;hp=3e6f5029217e4225a5ea7ffa1d4749632a59e479;hpb=b5cd7d6593ad0dba510172268777a521442387d7;p=babeltrace.git diff --git a/tests/cli/test_exit_status b/tests/cli/test_exit_status index 3e6f5029..905a2eb3 100755 --- a/tests/cli/test_exit_status +++ b/tests/cli/test_exit_status @@ -1,23 +1,13 @@ #!/bin/bash # -# Copyright (C) 2019 EfficiOS Inc. -# -# This program is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License, version 2 only, as -# published by the Free Software Foundation. +# SPDX-License-Identifier: GPL-2.0-only # -# 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. +# Copyright (C) 2019 EfficiOS Inc. # -# 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., 51 -# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. SH_TAP=1 -if [ "x${BT_TESTS_SRCDIR:-}" != "x" ]; then +if [ -n "${BT_TESTS_SRCDIR:-}" ]; then UTILSSH="$BT_TESTS_SRCDIR/utils/utils.sh" else UTILSSH="$(dirname "$0")/../utils/utils.sh" @@ -31,8 +21,11 @@ source_name="src.test_exit_status.StatusSrc" test_interrupted_graph() { local cli_args=("--plugin-path=$data_dir" "-c" "$source_name" "-p" "case=\"INTERRUPTED\"") - local actual_stdout=$(mktemp -t test_cli_exit_status_stdout_actual.XXXXXX) - local actual_stderr=$(mktemp -t test_cli_exit_status_stderr_actual.XXXXXX) + local actual_stdout + local actual_stderr + + actual_stdout=$(mktemp -t test_cli_exit_status_stdout_actual.XXXXXX) + actual_stderr=$(mktemp -t test_cli_exit_status_stderr_actual.XXXXXX) bt_cli "$actual_stdout" "$actual_stderr" "${cli_args[@]}" @@ -50,8 +43,11 @@ test_interrupted_graph() { test_error_graph() { local cli_args=("--plugin-path=$data_dir" "-c" "$source_name" "-p" "case=\"ERROR\"") - local actual_stdout=$(mktemp -t test_cli_exit_status_stdout_actual.XXXXXX) - local actual_stderr=$(mktemp -t test_cli_exit_status_stderr_actual.XXXXXX) + local actual_stdout + local actual_stderr + + actual_stdout=$(mktemp -t test_cli_exit_status_stdout_actual.XXXXXX) + actual_stderr=$(mktemp -t test_cli_exit_status_stderr_actual.XXXXXX) bt_cli "$actual_stdout" "$actual_stderr" "${cli_args[@]}" @@ -69,8 +65,11 @@ test_error_graph() { test_stop_graph() { local cli_args=("--plugin-path=$data_dir" "-c" "$source_name" "-p" "case=\"STOP\"") - local actual_stdout=$(mktemp -t test_cli_exit_status_stdout_actual.XXXXXX) - local actual_stderr=$(mktemp -t test_cli_exit_status_stderr_actual.XXXXXX) + local actual_stdout + local actual_stderr + + actual_stdout=$(mktemp -t test_cli_exit_status_stdout_actual.XXXXXX) + actual_stderr=$(mktemp -t test_cli_exit_status_stderr_actual.XXXXXX) bt_cli "$actual_stdout" "$actual_stderr" "${cli_args[@]}"