aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/IntegrationSpec.scala
diff options
context:
space:
mode:
authorJack Koenig2019-11-29 15:59:08 -0800
committerJack Koenig2020-01-07 19:35:50 -0800
commit3c8e22dc9e4f033be167aa721e6d8ad54330ca3c (patch)
treeda7e74c95ef762e67c4e7349632d941450acc537 /src/test/scala/firrtlTests/IntegrationSpec.scala
parentd5dd427c0267dc143d4297d5fd0716f19cd7634b (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/IntegrationSpec.scala')
-rw-r--r--src/test/scala/firrtlTests/IntegrationSpec.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/IntegrationSpec.scala b/src/test/scala/firrtlTests/IntegrationSpec.scala
index b7fd0084..732cd501 100644
--- a/src/test/scala/firrtlTests/IntegrationSpec.scala
+++ b/src/test/scala/firrtlTests/IntegrationSpec.scala
@@ -42,8 +42,8 @@ class GCDSplitEmissionExecutionTest extends FirrtlFlatSpec {
copyResourceToFile(cppHarnessResourceName, harness)
// topFile will be compiled by Verilator command by default but we need to also include dutFile
- verilogToCpp(top, testDir, Seq(dutFile), harness).!
- cppToExe(top, testDir).!
+ verilogToCpp(top, testDir, Seq(dutFile), harness) #&&
+ cppToExe(top, testDir) ! loggingProcessLogger
assert(executeExpectingSuccess(top, testDir))
}
}