[bazel] Leave opentitantool timeout unset
This was set to be 3600s to be compatible with the maximum test timeout
associated with bazel timeouts. This commit removes the timeout
argument to let bazel kill tests when they reach their timeouts.
Signed-off-by: Alphan Ulusoy <alphan@google.com>
diff --git a/rules/opentitan_test.bzl b/rules/opentitan_test.bzl
index ef7745c..8b3c488 100644
--- a/rules/opentitan_test.bzl
+++ b/rules/opentitan_test.bzl
@@ -85,7 +85,6 @@
"console",
"--exit-success={exit_success}",
"--exit-failure={exit_failure}",
- "--timeout=3600s",
],
data = _BASE_PARAMS["data"],
exit_success = _BASE_PARAMS["exit_success"],
@@ -150,7 +149,6 @@
"console",
"--exit-success={exit_success}",
"--exit-failure={exit_failure}",
- "--timeout=3600s",
],
data = _BASE_PARAMS["data"] + ["{bitstream}"],
exit_success = _BASE_PARAMS["exit_success"],