Compare commits
14 commits
e2653a3245
...
11ddbc43c7
Author | SHA1 | Date | |
---|---|---|---|
|
11ddbc43c7 | ||
|
c4b5d00419 | ||
|
09aa9fbc78 | ||
|
288a6b71b9 | ||
|
0095570f19 | ||
|
f54e55a143 | ||
|
a6e40839ac | ||
|
3106a6fff6 | ||
|
f338f37d3e | ||
|
277d3e0d4d | ||
|
b288d6f8f2 | ||
|
479d59b287 | ||
|
6f904148c4 | ||
|
3ea0d98924 |
|
@ -653,21 +653,19 @@ impl FormalArgs {
|
|||
self.sby.display()
|
||||
)))
|
||||
};
|
||||
if do_cache {
|
||||
fs::write(
|
||||
cache_file,
|
||||
serde_json::to_string_pretty(&FormalCache {
|
||||
version: FormalCacheVersion::CURRENT,
|
||||
contents_hash: contents_hash.unwrap(),
|
||||
stdout_stderr: captured_output,
|
||||
result: match &result {
|
||||
Ok(FormalOutput { verilog: _ }) => Ok(FormalCacheOutput {}),
|
||||
Err(error) => Err(error.to_string()),
|
||||
},
|
||||
})
|
||||
.expect("serialization shouldn't ever fail"),
|
||||
)?;
|
||||
}
|
||||
fs::write(
|
||||
cache_file,
|
||||
serde_json::to_string_pretty(&FormalCache {
|
||||
version: FormalCacheVersion::CURRENT,
|
||||
contents_hash: contents_hash.unwrap(),
|
||||
stdout_stderr: captured_output,
|
||||
result: match &result {
|
||||
Ok(FormalOutput { verilog: _ }) => Ok(FormalCacheOutput {}),
|
||||
Err(error) => Err(error.to_string()),
|
||||
},
|
||||
})
|
||||
.expect("serialization shouldn't ever fail"),
|
||||
)?;
|
||||
result
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue