Add error causes to failed WAST directives (#477)

This commit is contained in:
Andrew Brown
2019-11-06 11:58:29 -08:00
committed by Alex Crichton
parent 10f27197b5
commit a8afdff972

View File

@@ -168,7 +168,7 @@ fn main() {
wast_context
.run_file(Path::new(&filename))
.unwrap_or_else(|e| {
eprintln!("{}", e);
eprintln!("{:?}", e);
process::exit(1)
});
}