3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-14 08:55:27 +00:00

Add test for copying directories

As per https://stackoverflow.com/a/54950959, `os.path.basename()` returns an empty string if the string ends with a trailing slash.  This means that the target implied by `dir/` differs from an explicit target of `dir/`, and changes the behaviour to copy files to the root `src` directory instead.
This commit is contained in:
Krystine Sherwin 2025-08-02 09:17:21 +12:00
parent 32f6ac2a5a
commit a906714c95
No known key found for this signature in database
2 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,3 @@
import os
from pathlib import Path
import sys
@ -13,6 +12,7 @@ def main():
assert(local_contents.strip() == 'log foo')
else:
assert(srcfile.is_symlink() == (task == "link"))
assert(srcfile.name != "script.ys")
if __name__ == "__main__":
main()

View file

@ -1,6 +1,8 @@
[tasks]
link
copy
dir_implicit: dir
dir_explicit: dir
[options]
mode prep
@ -15,7 +17,9 @@ script dir/script.ys
[files]
../../docs/examples/demos/picorv32.v
prv32fmcmp.v
dir
~dir: dir
dir_implicit: dir/
dir_explicit: dir/ dir/
[file heredoc]
log foo