Skip to content

Commit a4358b1

Browse files
authored
Merge pull request #13398 from ethereum/cmdline-test-verbosity-fix
test/cmdlineTests.sh: fix verbosity.
2 parents f20ca0c + ee2c4cd commit a4358b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cmdlineTests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ function test_solc_assembly_output
311311
function test_via_ir_equivalence()
312312
{
313313
SOLTMPDIR=$(mktemp -d)
314-
pushd "$SOLTMPDIR"
314+
pushd "$SOLTMPDIR" > /dev/null
315315

316316
(( $# <= 2 )) || fail "This function accepts at most two arguments."
317317

@@ -369,7 +369,7 @@ function test_via_ir_equivalence()
369369

370370
diff_values "$bin_output_two_stage" "$bin_output_via_ir" --ignore-space-change --ignore-blank-lines
371371

372-
popd
372+
popd > /dev/null
373373
rm -r "$SOLTMPDIR"
374374
}
375375

0 commit comments

Comments
 (0)