Thread overview
can a unittest read main()'s args?
Mar 22, 2020
mark
Mar 22, 2020
rikki cattermole
Mar 22, 2020
mark
March 22, 2020
I have a module with a unittest { ... } block. However, when I run dub test sometimes I want to output some extra data when the test runs. At the moment I control this by using an environment variable, but I wondered if it was possible to pass a command line argument 'dub test myarg' and if so how to access it?
March 22, 2020
On 22/03/2020 8:57 PM, mark wrote:
> I have a module with a unittest { ... } block. However, when I run dub test sometimes I want to output some extra data when the test runs. At the moment I control this by using an environment variable, but I wondered if it was possible to pass a command line argument 'dub test myarg' and if so how to access it?

dub run -- args

https://dlang.org/phobos/core_runtime.html#.Runtime.args
March 22, 2020
On Sunday, 22 March 2020 at 07:59:01 UTC, rikki cattermole wrote:
> On 22/03/2020 8:57 PM, mark wrote:
>> I have a module with a unittest { ... } block. However, when I run dub test sometimes I want to output some extra data when the test runs. At the moment I control this by using an environment variable, but I wondered if it was possible to pass a command line argument 'dub test myarg' and if so how to access it?
>
> dub run -- args
>
> https://dlang.org/phobos/core_runtime.html#.Runtime.args

Thanks, that works great!