Trouble Minimizing ASAN Errors with bugpoint
Due to Output in stderr
#5096
-
I've been using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
One hacky approach could be to create the following bash script that just runs yosys with redirected stderr like #! /usr/bin/env bash
yosys $@ 2&>1 Make sure this file is executable, then in bugpoint pass Maybe we should also make bugpoint grep over stderr as well as stdout by default too |
Beta Was this translation helpful? Give feedback.
One hacky approach could be to create the following bash script that just runs yosys with redirected stderr like
Make sure this file is executable, then in bugpoint pass
-yosys stderr_yosys.sh
.Maybe we should also make bugpoint grep over stderr as well as stdout by default too