mirror of
https://github.com/YosysHQ/yosys
synced 2025-10-09 17:31:59 +00:00
Tests: Prefer single quotes for regex
Replaces double quotes on problematic regex strings (mostly ones that have escape sequences that are easier to preserve in single quotes). Necessitates also changing single quotes to `.`, i.e match any. For some (mostly ones that only have a single escaped character, or were using `\.` to match a literal fullstop) keep the double quotes and fix the regex instead.
This commit is contained in:
parent
4b4ea671e5
commit
1248af1e02
43 changed files with 74 additions and 73 deletions
|
@ -8,5 +8,5 @@ module top;
|
|||
endmodule
|
||||
EOF
|
||||
|
||||
logger -expect error "Parameter `\\Y' has no default value and has not been overridden!" 1
|
||||
logger -expect error 'Parameter `\\Y. has no default value and has not been overridden!' 1
|
||||
hierarchy -top top
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue