getting started/sbt: compile -> Test/compile#162
Conversation
Tests are being moved to specific folder so this line should be updated.
|
Hmm this PR is good enough: if we move simulations to |
|
I think runMain and test could not be mixed. runMain is used to generate the RTL for the design, while test is used to test the design. |
|
The current way to do things is that a simulation test is defined extending So waiting for |
I would say, the main distinction between main / Test is that main will be contained in the release jar, while test will not be included. |
|
There it also that you need Test/runMain to run an App in the test (tb) folder, and just runMain if it is in the main (hw) folder
Le 8 décembre 2022 21:48:32 UTC, Dolu1990 ***@***.***> a écrit :
…> I think runMain and test could not be mixed. runMain is used to generate the RTL for the design, while test is used to test the design.
so either use sbt runMain xxxx.xxxx or sbt testOnly xxxx.xxxx for a simple case.
I would say, the main distinction between main / Test is that main will be contained in the release jar, while test will not be included.
The scala test framework is something else (coupled to Test)
--
Reply to this email directly or view it on GitHub:
#162 (comment)
You are receiving this because you authored the thread.
Message ID: ***@***.***>
|
Tests are being moved to specific folder so this line should be updated.
Note: this is an untested quickfix from GH web interface