Merge pull request #13398 from ethereum/cmdline-test-verbosity-fix

test/cmdlineTests.sh: fix verbosity.
This commit is contained in:
Alexander Arlt
2022-08-16 18:57:10 +02:00
committed by GitHub
+2 -2
View File
@@ -311,7 +311,7 @@ function test_solc_assembly_output
function test_via_ir_equivalence()
{
SOLTMPDIR=$(mktemp -d)
pushd "$SOLTMPDIR"
pushd "$SOLTMPDIR" > /dev/null
(( $# <= 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
popd
popd > /dev/null
rm -r "$SOLTMPDIR"
}