diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-07-26 12:37:30 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-07-26 12:37:30 -0700 |
commit | 07e38d8d5c9d270404f68072b905b1dd43ced24b (patch) | |
tree | 823e1a772c41e4716069c48b2d73195afb01b7fe /passes/tests | |
parent | 8cecad5059b7ce6e1db1597020794c8e8aad3e49 (diff) | |
download | yosys-07e38d8d5c9d270404f68072b905b1dd43ced24b.tar.gz yosys-07e38d8d5c9d270404f68072b905b1dd43ced24b.tar.bz2 yosys-07e38d8d5c9d270404f68072b905b1dd43ced24b.zip |
Update test_autotb doc to reflect default value of zero
Diffstat (limited to 'passes/tests')
-rw-r--r-- | passes/tests/test_autotb.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/passes/tests/test_autotb.cc b/passes/tests/test_autotb.cc index 7eee6a568..7f11e54f3 100644 --- a/passes/tests/test_autotb.cc +++ b/passes/tests/test_autotb.cc @@ -349,7 +349,9 @@ struct TestAutotbBackend : public Backend { log(" number of iterations the test bench should run (default = 1000)\n"); log("\n"); log(" -seed <int>\n"); - log(" seed used for pseudo-random number generation (default = time)\n"); + log(" seed used for pseudo-random number generation (default = 0).\n"); + log(" a value of 0 will cause an arbitrary seed to be chosen, based on\n"); + log(" the current system time.\n"); log("\n"); } void execute(std::ostream *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE |