1
0
mirror of synced 2026-05-20 20:52:52 +00:00
Files
YosysHQ.yosys/tests/scripts/space_in_name.ys
Krystine Sherwin 0a88c159c1 tests/scripts: Also check hashes in quotes
i.e. they should be part of the quote instead of starting a comment
2025-09-24 14:03:49 +12:00

20 lines
542 B
Plaintext
Executable File

echo on
# pass
test_args "quoted spaces"
test_args escaped\ spaces
test_args \"escaped quotes\"
test_args "inner \"escaped quotes\""
test_args -opt "some value here" -b "some other \"escaped value\""
# frontend/backend
read_test_args -arg "inner \"escaped quotes\"" "file name.v" "file name.ys"
write_test_args -arg "inner \"escaped quotes\"" "file name.out"
read_test_args -arg no_quotes plugin.cc
write_test_args -arg no_quotes
# hash in string?
test_args "this is \\ #not a comment"
test_args this is #a comment
test_args "#no comment"