diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-11-06 20:16:57 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-11-06 20:16:57 +0300 |
commit | a448a249031d207d83535c160eb329d0224ac923 (patch) | |
tree | 70aeecbbf4597d2321b3738ff540c9332d4ec0ac /libbuild2/test/init.cxx | |
parent | f41599c8e9435f3dfec60b872c2b4ae31177efdd (diff) |
Fix mistreating test operation timeout as test timeout in some case
Diffstat (limited to 'libbuild2/test/init.cxx')
-rw-r--r-- | libbuild2/test/init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/test/init.cxx b/libbuild2/test/init.cxx index 0a47842..47a73ba 100644 --- a/libbuild2/test/init.cxx +++ b/libbuild2/test/init.cxx @@ -220,7 +220,7 @@ namespace build2 m.test_timeout = parse_timeout (string (t, p + 1), tt); } else - m.test_timeout = parse_timeout (t, ot); + m.operation_timeout = parse_timeout (t, ot); } //@@ TODO: Need ability to specify extra diff options (e.g., |