aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ijar/test
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/ijar/test')
-rwxr-xr-xthird_party/ijar/test/ijar_test.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/third_party/ijar/test/ijar_test.sh b/third_party/ijar/test/ijar_test.sh
index db9a3a7f4d..89f9a4bc75 100755
--- a/third_party/ijar/test/ijar_test.sh
+++ b/third_party/ijar/test/ijar_test.sh
@@ -96,8 +96,7 @@ function check_consistent_file_contents() {
local actual="$(cat $1 | ${MD5SUM} | awk '{ print $1; }')"
local filename="$(echo $1 | ${MD5SUM} | awk '{ print $1; }')"
local expected="$actual"
- disable_errexit
- if $(echo "${expected_output}" | grep -q "^${filename} "); then
+ if (echo "${expected_output}" | grep -q "^${filename} "); then
echo "${expected_output}" | grep -q "^${filename} ${actual}$" || {
ls -l "$1"
fail "output file contents differ"
@@ -106,7 +105,6 @@ function check_consistent_file_contents() {
expected_output="$expected_output$filename $actual
"
fi
- enable_errexit
}
function set_up() {