From 6f683ece13fc5ea682d931ed33cb7c9fa8b025c2 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Mon, 26 Mar 2018 11:47:44 -0400 Subject: [PATCH] Fix: Use bash for all test scripts MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We already use bash in most test scripts shebang and the sh binary on Solaris 10 doesn't like some of our "modern" scripts syntax. Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- tests/plugins/test-utils-muxer-complete.in | 2 +- tests/plugins/test_bin_info_complete.in | 2 +- tests/plugins/test_dwarf_complete.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/plugins/test-utils-muxer-complete.in b/tests/plugins/test-utils-muxer-complete.in index beb6f0a2..9b5999dc 100644 --- a/tests/plugins/test-utils-muxer-complete.in +++ b/tests/plugins/test-utils-muxer-complete.in @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright (C) 2017 Philippe Proulx # diff --git a/tests/plugins/test_bin_info_complete.in b/tests/plugins/test_bin_info_complete.in index 0069dd7e..434a0c35 100644 --- a/tests/plugins/test_bin_info_complete.in +++ b/tests/plugins/test_bin_info_complete.in @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright (C) 2015 - Antoine Busque # diff --git a/tests/plugins/test_dwarf_complete.in b/tests/plugins/test_dwarf_complete.in index 0a99e7d9..42bff22c 100644 --- a/tests/plugins/test_dwarf_complete.in +++ b/tests/plugins/test_dwarf_complete.in @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright (C) 2015 - Antoine Busque # -- 2.34.1