bindings: python: tests: set the process name
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 6 Dec 2022 09:56:21 +0000 (10:56 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 9 Dec 2022 09:06:53 +0000 (10:06 +0100)
When we run the test suite by calling the __main__ function of the module,
the name of the process as visible in the system becomes "python". Let's
set it to "python-gpiod" before running the tests. This way gpiosim will
name its configfs attributes appropriately.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/python/setup.py
bindings/python/tests/Makefile.am
bindings/python/tests/__main__.py
bindings/python/tests/procname/Makefile.am [new file with mode: 0644]
bindings/python/tests/procname/__init__.py [new file with mode: 0644]
bindings/python/tests/procname/ext.c [new file with mode: 0644]
configure.ac

index 7ad5de3bfc281da28173b0d622e60d7effec715a..a9510697028ed557035bc87a72163bd5d7b065f8 100644 (file)
@@ -27,9 +27,17 @@ gpiosim_ext = Extension(
     extra_compile_args=["-Wall", "-Wextra"],
 )
 
+procname_ext = Extension(
+    "tests.procname._ext",
+    sources=["tests/procname/ext.c"],
+    define_macros=[("_GNU_SOURCE", "1")],
+    extra_compile_args=["-Wall", "-Wextra"],
+)
+
 extensions = [gpiod_ext]
 if "GPIOD_WITH_TESTS" in environ and environ["GPIOD_WITH_TESTS"] == "1":
     extensions.append(gpiosim_ext)
+    extensions.append(procname_ext)
 
 with open("gpiod/version.py", "r") as fd:
     exec(fd.read())
index 7dcdebb28d09170c1cb0a3511c2cb68a502292c5..c89241ed8bd5f74a4e64811c70829f849a03f21a 100644 (file)
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: LGPL-2.1-or-later
 # SPDX-FileCopyrightText: 2022 Bartosz Golaszewski <brgl@bgdev.pl>
 
-SUBDIRS = gpiosim
+SUBDIRS = gpiosim procname
 
 EXTRA_DIST = \
        helpers.py \
index b5d7f0ab0174bf7441aa59b056d8a69149254bb3..cc39c297f0112d721f3db68c3d248383776be0e2 100644 (file)
@@ -13,4 +13,8 @@ from .tests_line_settings import *
 from .tests_module import *
 from .tests_line_request import *
 
+from . import procname
+
+procname.set_process_name("python-gpiod")
+
 unittest.main()
diff --git a/bindings/python/tests/procname/Makefile.am b/bindings/python/tests/procname/Makefile.am
new file mode 100644 (file)
index 0000000..c4a8fd5
--- /dev/null
@@ -0,0 +1,6 @@
+# SPDX-License-Identifier: LGPL-2.1-or-later
+# SPDX-FileCopyrightText: 2022 Bartosz Golaszewski <brgl@bgdev.pl>
+
+EXTRA_DIST = \
+       ext.c \
+       __init__.py
diff --git a/bindings/python/tests/procname/__init__.py b/bindings/python/tests/procname/__init__.py
new file mode 100644 (file)
index 0000000..af6abdd
--- /dev/null
@@ -0,0 +1,4 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2022 Bartosz Golaszewski <brgl@bgdev.pl>
+
+from ._ext import set_process_name
diff --git a/bindings/python/tests/procname/ext.c b/bindings/python/tests/procname/ext.c
new file mode 100644 (file)
index 0000000..bf7d2fe
--- /dev/null
@@ -0,0 +1,42 @@
+// SPDX-License-Identifier: LGPL-2.1-or-later
+// SPDX-FileCopyrightText: 2022 Bartosz Golaszewski <brgl@bgdev.pl>
+
+#include <Python.h>
+#include <sys/prctl.h>
+
+static PyObject *
+module_set_process_name(PyObject *Py_UNUSED(self), PyObject *args)
+{
+       const char *name;
+       int ret;
+
+       ret = PyArg_ParseTuple(args, "s", &name);
+       if (!ret)
+               return NULL;
+
+       ret = prctl(PR_SET_NAME, name);
+       if (ret)
+               return PyErr_SetFromErrno(PyExc_OSError);
+
+       Py_RETURN_NONE;
+}
+
+static PyMethodDef module_methods[] = {
+       {
+               .ml_name = "set_process_name",
+               .ml_meth = (PyCFunction)module_set_process_name,
+               .ml_flags = METH_VARARGS,
+       },
+       { }
+};
+
+static PyModuleDef module_def = {
+       PyModuleDef_HEAD_INIT,
+       .m_name = "procname._ext",
+       .m_methods = module_methods,
+};
+
+PyMODINIT_FUNC PyInit__ext(void)
+{
+       return PyModule_Create(&module_def);
+}
index 07706f0bcdea1d06663594f913f4df2746f06039..1c8f19221dfa810fcdbe06d0d588fbc7aac2d950 100644 (file)
@@ -268,6 +268,7 @@ AC_CONFIG_FILES([Makefile
                 bindings/python/examples/Makefile
                 bindings/python/tests/Makefile
                 bindings/python/tests/gpiosim/Makefile
+                bindings/python/tests/procname/Makefile
                 bindings/rust/libgpiod-sys/src/Makefile
                 bindings/rust/libgpiod-sys/Makefile
                 bindings/rust/libgpiod/src/Makefile