ci: increase timeout for long running tests

The test "secure_interrupts.sp_route_interrupt_to_secondary_vcpu"
from within "ffa_secure_partitions" fails due to timeout.
Increase the time slightly to make it pass the CI.

As well, some other QEMU systems runs were failing on normal tests,
so increasing the timeout for them as well.

Signed-off-by: J-Alves <joao.alves@arm.com>
Change-Id: I931a69980c29df4da9e4b43af83a4b16c14de73c
diff --git a/test/hftest/hftest.py b/test/hftest/hftest.py
index a790fad..54c51fe 100755
--- a/test/hftest/hftest.py
+++ b/test/hftest/hftest.py
@@ -234,7 +234,7 @@
 
     def gen_exec_args(self, test_args, is_long_running):
         """Generate command line arguments for QEMU."""
-        time_limit = "120s" if is_long_running else "10s"
+        time_limit = "120s" if is_long_running else "30s"
         # If no CPU configuration is selected, then test against the maximum
         # configuration, "max", supported by QEMU.
         if not self.args.cpu or self.args.cpu == "max":
@@ -349,7 +349,7 @@
         """Generate command line arguments for FVP."""
         show_output = debug or show_output
         disable_visualisation = self.args.disable_visualisation is True
-        time_limit = "100s" if is_long_running else "40s"
+        time_limit = "150s" if is_long_running else "40s"
         fvp_args = []
 
         if not show_output: