The python-tests-run target is broken as it does not correctly split
lines. It also calls Python directly rather then through the $PYTHON
variable.
Fix the line splitting and call Python using the $PYTHON variable.
Signed-off-by: Kent Gibson <warthog618@gmail.com>
Link: https://lore.kernel.org/r/20240526113234.253859-3-warthog618@gmail.com
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
$(PYTHON) build_tests.py
python-tests-run:
- PYTHONPATH=$(abs_top_srcdir)/bindings/python
+ PYTHONPATH=$(abs_top_srcdir)/bindings/python \
LD_LIBRARY_PATH=$(abs_top_builddir)/lib/.libs/:\
- $(abs_top_builddir)/tests/gpiosim/.libs/ \
- python3 -B -m tests
+ $(abs_top_builddir)/tests/gpiosim/.libs/ \
+ $(PYTHON) -B -m tests
else