From 91438920b465ec7455dd1cd700bbe8ec5050b3f9 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 9 Dec 2010 14:51:51 +0100 Subject: subunit: Update to newer upstream snapshot. --- lib/subunit/shell/tests/test_source_library.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lib/subunit/shell/tests/test_source_library.sh') diff --git a/lib/subunit/shell/tests/test_source_library.sh b/lib/subunit/shell/tests/test_source_library.sh index 3ef6ffeb36..699f1281bc 100755 --- a/lib/subunit/shell/tests/test_source_library.sh +++ b/lib/subunit/shell/tests/test_source_library.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # subunit shell bindings. # Copyright (C) 2006 Robert Collins # @@ -24,7 +24,7 @@ echo 'test: shell bindings can be sourced' # if any output occurs, this has failed to source cleanly source_output=$(. ${SHELL_SHARE}subunit.sh 2>&1) -if [ $? -eq 0 -a "x$source_output" = "x" ]; then +if [ $? == 0 -a "x$source_output" = "x" ]; then echo 'success: shell bindings can be sourced' else echo 'failure: shell bindings can be sourced [' @@ -40,7 +40,7 @@ fi echo 'test: subunit_start_test exists' found_type=$(type -t subunit_start_test) status=$? -if [ $status -eq 0 -a "x$found_type" = "xfunction" ]; then +if [ $status == 0 -a "x$found_type" = "xfunction" ]; then echo 'success: subunit_start_test exists' else echo 'failure: subunit_start_test exists [' @@ -54,7 +54,7 @@ fi echo 'test: subunit_pass_test exists' found_type=$(type -t subunit_pass_test) status=$? -if [ $status -eq 0 -a "x$found_type" = "xfunction" ]; then +if [ $status == 0 -a "x$found_type" = "xfunction" ]; then echo 'success: subunit_pass_test exists' else echo 'failure: subunit_pass_test exists [' @@ -68,7 +68,7 @@ fi echo 'test: subunit_fail_test exists' found_type=$(type -t subunit_fail_test) status=$? -if [ $status -eq 0 -a "x$found_type" = "xfunction" ]; then +if [ $status == 0 -a "x$found_type" = "xfunction" ]; then echo 'success: subunit_fail_test exists' else echo 'failure: subunit_fail_test exists [' @@ -82,7 +82,7 @@ fi echo 'test: subunit_error_test exists' found_type=$(type -t subunit_error_test) status=$? -if [ $status -eq 0 -a "x$found_type" = "xfunction" ]; then +if [ $status == 0 -a "x$found_type" = "xfunction" ]; then echo 'success: subunit_error_test exists' else echo 'failure: subunit_error_test exists [' @@ -96,7 +96,7 @@ fi echo 'test: subunit_skip_test exists' found_type=$(type -t subunit_skip_test) status=$? -if [ $status -eq 0 -a "x$found_type" = "xfunction" ]; then +if [ $status == 0 -a "x$found_type" = "xfunction" ]; then echo 'success: subunit_skip_test exists' else echo 'failure: subunit_skip_test exists [' -- cgit