diff options
| author | Jack Koenig | 2019-11-29 15:59:08 -0800 |
|---|---|---|
| committer | Jack Koenig | 2020-01-07 19:35:50 -0800 |
| commit | 3c8e22dc9e4f033be167aa721e6d8ad54330ca3c (patch) | |
| tree | da7e74c95ef762e67c4e7349632d941450acc537 /src/test/scala/firrtlTests/DriverSpec.scala | |
| parent | d5dd427c0267dc143d4297d5fd0716f19cd7634b (diff) | |
Redirect testing shell commands to logger
This includes the built-in functions in BackendCompilationUtilities
which are a public API
Diffstat (limited to 'src/test/scala/firrtlTests/DriverSpec.scala')
| -rw-r--r-- | src/test/scala/firrtlTests/DriverSpec.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/DriverSpec.scala b/src/test/scala/firrtlTests/DriverSpec.scala index b4f61dfd..88a39a01 100644 --- a/src/test/scala/firrtlTests/DriverSpec.scala +++ b/src/test/scala/firrtlTests/DriverSpec.scala @@ -498,8 +498,8 @@ class VcdSuppressionSpec extends FirrtlFlatSpec { val harness = new File(testDir, s"top.cpp") copyResourceToFile(cppHarnessResourceName, harness) - verilogToCpp(prefix, testDir, Seq.empty, harness, suppress).! - cppToExe(prefix, testDir).! + verilogToCpp(prefix, testDir, Seq.empty, harness, suppress) #&& + cppToExe(prefix, testDir) ! loggingProcessLogger assert(executeExpectingSuccess(prefix, testDir)) |
