Skip to content

Commit

Permalink
[nix] only output property urg report
Browse files Browse the repository at this point in the history
  • Loading branch information
Clo91eaf committed Oct 4, 2024
1 parent a19b85f commit 5f5d731
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nix/t1/run/run-vcs-emu.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stdenvNoCC.mkDerivation (finalAttr: {
emuDriverArgsArray=(
"+t1_elf_file=${testCase}/bin/${testCase.pname}.elf"
${lib.optionalString emulator.enableTrace "+t1_wave_path=${testCase.pname}.fsdb"}
${lib.optionalString emulator.enableCover "-cm line+cond+fsm+tgl+branch+assert"}
${lib.optionalString emulator.enableCover "-cm assert"}
)
emuDriverArgs="''${emuDriverArgsArray[@]}"
emuDriver="${emulator}/bin/${emulator.mainProgram}"
Expand Down
2 changes: 1 addition & 1 deletion script/emu/src/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ object Main:
s"+t1_elf_file=${caseElfPath}"
)
++ optionals(isTrace, Seq(s"+t1_wave_path=${outputPath / "wave.fsdb"}"))
++ optionals(isCover, Seq(s"-cm line+cond+fsm+tgl+branch+assert"))
++ optionals(isCover, Seq(s"-cm assert"))
++ optionals(!leftOverArguments.isEmpty, leftOverArguments)

if dryRun.value then return
Expand Down

0 comments on commit 5f5d731

Please sign in to comment.