samples: tfm_integration: tfm_regression_test Default to isol level 2

This defaults the TF-M regression tests to isolation level 2.
It is set in order to showcase a more secure configuration
by default. The default behavior of the sample is changed in
the prj.conf file. The yaml file which includes the test cases
enables testing for the three configurations: the library mode,
the IPC mode isolation level 1 and the IPC mode isolation level 2.

Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
diff --git a/samples/tfm_integration/tfm_regression_test/prj.conf b/samples/tfm_integration/tfm_regression_test/prj.conf
index a9200fa..73ccdc5 100644
--- a/samples/tfm_integration/tfm_regression_test/prj.conf
+++ b/samples/tfm_integration/tfm_regression_test/prj.conf
@@ -16,3 +16,7 @@
 CONFIG_TFM_PARTITION_INITIAL_ATTESTATION=y
 CONFIG_TFM_PARTITION_PLATFORM=y
 CONFIG_TFM_PARTITION_AUDIT_LOG=y
+
+# Enable IPC mode and isolation level 2 by default
+CONFIG_TFM_IPC=y
+CONFIG_TFM_ISOLATION_LEVEL=2
diff --git a/samples/tfm_integration/tfm_regression_test/sample.yaml b/samples/tfm_integration/tfm_regression_test/sample.yaml
index 0297fb0..3383c91 100644
--- a/samples/tfm_integration/tfm_regression_test/sample.yaml
+++ b/samples/tfm_integration/tfm_regression_test/sample.yaml
@@ -14,9 +14,13 @@
   name: "TFM Regression Test"
 
 tests:
-  sample.tfm.regression:
+  sample.tfm.regression_lib_mode:
+    extra_args: CONFIG_TFM_IPC=n CONFIG_TFM_ISOLATION_LEVEL=1
     timeout: 200
 
-  sample.tfm.regression_ipc:
-    extra_args: CONFIG_TFM_IPC=y
+  sample.tfm.regression_ipc_lvl1:
+    extra_args: CONFIG_TFM_IPC=y CONFIG_TFM_ISOLATION_LEVEL=1
+    timeout: 200
+
+  sample.tfm.regression_ipc_lvl2:
     timeout: 200