Support version ABI check for test_ust_app_vs_ust_tools
[deliverable/lttng-ivc.git] / lttng_ivc / utils / utils.py
index ec8d75b7cae87949fcb4cd4fbb9b4301bc2a396d..b8a1b37a0ca2a95089a3e22c279467eb4e29c328 100644 (file)
@@ -51,3 +51,10 @@ def sessiond_spawn(runtime):
 
 
 
+
+def file_contains(stderr_file, list_of_string):
+    with open(stderr_file, 'r') as stderr:
+        for line in stderr:
+            for s in list_of_string:
+                if s in line:
+                    return True
This page took 0.0232520000000001 seconds and 5 git commands to generate.