We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f20ca0c + ee2c4cd commit a4358b1Copy full SHA for a4358b1
test/cmdlineTests.sh
@@ -311,7 +311,7 @@ function test_solc_assembly_output
311
function test_via_ir_equivalence()
312
{
313
SOLTMPDIR=$(mktemp -d)
314
- pushd "$SOLTMPDIR"
+ pushd "$SOLTMPDIR" > /dev/null
315
316
(( $# <= 2 )) || fail "This function accepts at most two arguments."
317
@@ -369,7 +369,7 @@ function test_via_ir_equivalence()
369
370
diff_values "$bin_output_two_stage" "$bin_output_via_ir" --ignore-space-change --ignore-blank-lines
371
372
- popd
+ popd > /dev/null
373
rm -r "$SOLTMPDIR"
374
}
375
0 commit comments