We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d3bc3f commit 59b5c1dCopy full SHA for 59b5c1d
1 file changed
scripts/fuzz_opt.py
@@ -455,7 +455,8 @@ def write_commands(commands, filename):
455
f.write('set -e\n')
456
for command in commands:
457
f.write('echo "%s"\n' % command)
458
- f.write(command + ' &> /dev/null\n')
+ pre = 'BINARYEN_PASS_DEBUG=%s ' % (os.environ.get('BINARYEN_PASS_DEBUG') or '0')
459
+ f.write(pre + command + ' &> /dev/null\n')
460
f.write('echo "ok"\n')
461
462
0 commit comments