tests: Deserialise transport tests that exercise timeouts

Allow tests that wait to execute in parallel. This reduces the test
suite run time from ~20 seconds to ~5 seconds.

Change-Id: I9acb86a0ce919b90cc7f923b1e1c922d5614d37d
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/tests/meson.build b/tests/meson.build
index 82f7fde..ba538f9 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -27,7 +27,14 @@
 ]
 
 if get_option('abi').contains('testing')
-  tests += [ 'transport' ]
+  tests += [
+    'transport',
+    'transport/send_recv_one',
+    'transport/send_recv_timeout',
+    'transport/send_recv_unwanted',
+    'transport/send_recv_wrong_pldm_type',
+    'transport/send_recv_wrong_command_code'
+  ]
 endif
 
 if get_option('oem-ibm').allowed()