Change required clang-format version to 14
[babeltrace.git] / tests / cli / test_exit_status
index 3e6f5029217e4225a5ea7ffa1d4749632a59e479..d76d5214e6c9973dd462e4d2dcecfaf5a6bc5c7c 100755 (executable)
@@ -1,19 +1,9 @@
 #!/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
 
@@ -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[@]}"
 
This page took 0.022921 seconds and 4 git commands to generate.