Attn: Add ten second delay during SBE attention handling

A 10 second wait is introduced in the attention handler
path when a SBE attention is detected. This wait has been
shown to be adequate to allow the power fault handling
logic to commit a PEL and gracefully power down the host
before the SBE attention is handled. The SBE attention
handling will be preempted by the host power down sequence.
No SBE attention PEL will be committed.

Signed-off-by: Ben Tyner <ben.tyner@ibm.com>
Change-Id: I91a313712b67eec0ec10eb3f37e0c56fda64f200
diff --git a/test/meson.build b/test/meson.build
index 0517032..492c96d 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -91,6 +91,11 @@
   'test-ti-handler',
 ]
 
+# allow more time for long running tests
+longtests = {
+  'test-end2end': 2,
+}
+
 foreach tc : testcases
 
   exe = executable(tc.underscorify(),
@@ -101,7 +106,7 @@
     link_with           : hwdiags_libs, # TODO: should use test_libs instead
   )
 
-  test(tc, exe, env: test_vars)
+  test(tc, exe, env: test_vars, timeout: 30 * longtests.get(tc, 1))
 
 endforeach