VUnit / vunit

VUnit is a unit testing framework for VHDL/SystemVerilog
http://vunit.github.io/
Other
726 stars 263 forks source link

VUnit.add_source_files_from_csv() does not allow for all kwargs to be used #555

Open GlenNicholls opened 5 years ago

GlenNicholls commented 5 years ago

VUnit.add_source_files_from_csv() only passes vhdl_standard kwarg to Library.add_source_file(). However, my file gatherer uses .ahd file extensions to denote altera, .xhd to denote xilinx, and so on. I need the file_type available at least so I can tell VUnit that those file types are still vhdl, but all arguments should be available.

kraigher commented 5 years ago

Sure I guess any argument that add_sources_files has would make sense to add to add_sources_files_from_csv. Are you able to make a pull request to add it yourself?

GlenNicholls commented 5 years ago

I am, but where I work I need to get #556 resolved first as that is more critical. Once I can figure out all my problems in that issue then I can knock this one out.