Commit 93a24327 authored by Inphi's avatar Inphi Committed by GitHub

Fix Specification_Test (#10739)

* Fix Specification_Test

* fix the rest of the spec tests

* lint
parent e45f887a
...@@ -162,7 +162,7 @@ library ForgeArtifacts { ...@@ -162,7 +162,7 @@ library ForgeArtifacts {
{ {
string memory pathExcludesPat; string memory pathExcludesPat;
for (uint256 i = 0; i < pathExcludes.length; i++) { for (uint256 i = 0; i < pathExcludes.length; i++) {
pathExcludesPat = string.concat(pathExcludesPat, " -path ", pathExcludes[i]); pathExcludesPat = string.concat(pathExcludesPat, " -path \"", pathExcludes[i], "\"");
if (i != pathExcludes.length - 1) { if (i != pathExcludes.length - 1) {
pathExcludesPat = string.concat(pathExcludesPat, " -o "); pathExcludesPat = string.concat(pathExcludesPat, " -o ");
} }
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment