test/cmdlineTests.sh: fix verbosity.

This commit is contained in:
Alexander Arlt 2022-08-15 17:37:08 +02:00
parent 1b081d0c46
commit ee2c4cddcd

View File

@ -311,7 +311,7 @@ function test_solc_assembly_output
function test_via_ir_equivalence() function test_via_ir_equivalence()
{ {
SOLTMPDIR=$(mktemp -d) SOLTMPDIR=$(mktemp -d)
pushd "$SOLTMPDIR" pushd "$SOLTMPDIR" > /dev/null
(( $# <= 2 )) || fail "This function accepts at most two arguments." (( $# <= 2 )) || fail "This function accepts at most two arguments."
@ -369,7 +369,7 @@ function test_via_ir_equivalence()
diff_values "$bin_output_two_stage" "$bin_output_via_ir" --ignore-space-change --ignore-blank-lines diff_values "$bin_output_two_stage" "$bin_output_via_ir" --ignore-space-change --ignore-blank-lines
popd popd > /dev/null
rm -r "$SOLTMPDIR" rm -r "$SOLTMPDIR"
} }