Skip to content

Commit 515018f

Browse files
author
Oron Port
committed
temporarily disable caching in app tests
1 parent 560b02f commit 515018f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

project/DFHDLCommands.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,14 @@ object DFHDLCommands {
126126
val allTools = (vhdlTools ++ verilogTools).toSet
127127
allTools.filter(tool => helpStr.linesIterator.exists(line => line.contains(tool) && line.contains("Found version")))
128128
}
129+
//TODO: fix caching issues
129130
for (tool <- vhdlTools if existingTools.contains(tool); dialect <- vhdlDialects if !skip.contains((tool, dialect))) {
130-
val arguments = s" AES.top_CipherSim simulate -b $dialect -t $tool --Werror-tool"
131+
val arguments = s" AES.top_CipherSim --nocache simulate -b $dialect -t $tool --Werror-tool"
131132
val (updatedState, _) = extracted.runInputTask(runMainTask, arguments, newState)
132133
newState = updatedState
133134
}
134135
for (tool <- verilogTools if existingTools.contains(tool); dialect <- verilogDialects if !skip.contains((tool, dialect))) {
135-
val arguments = s" AES.top_CipherSim simulate -b $dialect -t $tool --Werror-tool"
136+
val arguments = s" AES.top_CipherSim --nocache simulate -b $dialect -t $tool --Werror-tool"
136137
val (updatedState, _) = extracted.runInputTask(runMainTask, arguments, newState)
137138
newState = updatedState
138139
}

0 commit comments

Comments
 (0)