Licensing information
[deliverable/lttng-ivc.git] / lttng_ivc / tests / modules_abi_vs_tools / test_modules_abi_vs_tools.py
index 32a25e222de4f7b3b54e91dbbf8d29d6b2b93b90..c29206e9481615d728b9679e336ff00ca69d5713 100644 (file)
@@ -1,3 +1,23 @@
+# Copyright (c) 2017 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+
 import pytest
 import os
 import glob
@@ -191,7 +211,7 @@ def test_modules_base_tracing(tmpdir, modules_label, tools_label):
 
         sessiond = runtime.subprocess_terminate(sessiond)
         if sessiond.returncode != 0:
-            pytest.fails("Return value of sessiond is not zero")
+            pytest.fail("Return value of sessiond is not zero")
             return
 
         cp_process, cp_out, cp_err = runtime.run(babeltrace_cmd)
@@ -250,7 +270,7 @@ def test_modules_regen_metadata(tmpdir, modules_label, tools_label, command, sce
             # Make sure everything looks good on this side
             sessiond = runtime.subprocess_terminate(sessiond)
             if sessiond.returncode != 0:
-                pytest.fails("Return value of sessiond is not zero")
+                pytest.fail("Return value of sessiond is not zero")
             return
 
         runtime.run("lttng {}".format(command))
@@ -259,7 +279,7 @@ def test_modules_regen_metadata(tmpdir, modules_label, tools_label, command, sce
 
         sessiond = runtime.subprocess_terminate(sessiond)
         if sessiond.returncode != 0:
-            pytest.fails("Return value of sessiond is not zero")
+            pytest.fail("Return value of sessiond is not zero")
 
         cp_process, cp_out, cp_err = runtime.run(babeltrace_cmd)
         assert(line_count(cp_out) == nb_events)
@@ -310,7 +330,7 @@ def test_modules_statedump(tmpdir, modules_label, tools_label, scenario):
 
         sessiond = runtime.subprocess_terminate(sessiond)
         if sessiond.returncode != 0:
-            pytest.fails("Return value of sessiond is not zero")
+            pytest.fail("Return value of sessiond is not zero")
 
         cp_process, cp_out, cp_err = runtime.run(babeltrace_cmd)
         assert(line_count(cp_out) == expected_event)
@@ -350,7 +370,7 @@ def test_modules_starglobing_enabler(tmpdir, modules_label, tools_label, scenari
                 runtime.run("lttng enable-event -k 'lttng_test_*_even*'")
             sessiond = runtime.subprocess_terminate(sessiond)
             if sessiond.returncode != 0:
-                pytest.fails("Return value of sessiond is not zero")
+                pytest.fail("Return value of sessiond is not zero")
             return
 
         runtime.run("lttng enable-event -k 'lttng_test_*_even*'")
@@ -365,7 +385,7 @@ def test_modules_starglobing_enabler(tmpdir, modules_label, tools_label, scenari
 
         sessiond = runtime.subprocess_terminate(sessiond)
         if sessiond.returncode != 0:
-            pytest.fails("Return value of sessiond is not zero")
+            pytest.fail("Return value of sessiond is not zero")
 
         cp_process, cp_out, cp_err = runtime.run(babeltrace_cmd)
         assert(line_count(cp_out) == expected_events)
This page took 0.023975 seconds and 5 git commands to generate.