arcappcompat: Update maximum runtime for appcompat_release suite

It is observed that the appcompat_release suite couldn’t complete
the runs due to the global timeout reached error. Currently
appcompat_release tests are set to a global timeout of 120 minutes.
As new test cases were added to the suite,  120 minutes isn't enough
for running the test suite.  So increasing the timeout will fix the
issue.

BUG=b:201338436
TEST=test_that --board=eve <ip-address> tast.appcompat_release

Change-Id: Id9de951e82012868c4179635d568ebb47622588e
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/3194859
Tested-by: Meenakshi Thiyagarajan <mthiyagarajan@google.com>
Commit-Queue: Meenakshi Thiyagarajan <mthiyagarajan@google.com>
Reviewed-by: Seewai Fu <seewaifu@google.com>
Reviewed-by: Renuga Nanjappan <rnanjappan@chromium.org>
Reviewed-by: Derek Beckett <dbeckett@chromium.org>
diff --git a/server/site_tests/tast/control.appcompat_release b/server/site_tests/tast/control.appcompat_release
index a67d453..655a979 100644
--- a/server/site_tests/tast/control.appcompat_release
+++ b/server/site_tests/tast/control.appcompat_release
@@ -29,7 +29,7 @@
     job.run_test('tast',
                  host=hosts.create_host(machine),
                  test_exprs=['("group:appcompat" && appcompat_release)'],
-                 ignore_test_failures=True, max_run_sec=7200,
+                 ignore_test_failures=True, max_run_sec=14400, # TODO(b/201791240): Reduce timeout once the solution is found. 
                  command_args=args)
 
 parallel_simple(run, machines)
diff --git a/test_suites/control.appcompat_release b/test_suites/control.appcompat_release
index 377111c..28eb9b0 100644
--- a/test_suites/control.appcompat_release
+++ b/test_suites/control.appcompat_release
@@ -19,7 +19,7 @@
 
 args_dict['name'] = NAME
 args_dict['add_experimental'] = True
-args_dict['max_runtime_mins'] = 120
+args_dict['max_runtime_mins'] = 240 # TODO(b/201791240): Reduce timeout once the solution is found. 
 args_dict['job'] = job
 
 dynamic_suite.reimage_and_run(**args_dict)