blob: a59fe47591cea575ea6e00905f2038308edb490e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Don't try to use wildcards to replace the list of tests below.
# http://www.gnu.org/software/automake/manual/automake.html#Wildcards
# Keep this list sorted!
TEST_ENVIRONMENT = \
GST_OVERRIDE_SRC_PATH="$(abs_top_srcdir)/gi/overrides" \
GST_OVERRIDE_BUILD_PATH="$(abs_top_builddir)/gi/overrides"
tests = \
test_gst.py \
test_types.py
EXTRA_DIST = \
__init__.py \
cleanup.py \
common.py \
gstpython.supp \
meson.build \
overrides_hack.py \
python.supp \
runtests.py \
$(tests)
clean-local:
rm -rf *.pyc *.pyo
check-local:
$(TEST_ENVIRONMENT) $(PYTHON) $(srcdir)/runtests.py $(tests)
%.check: %
$(TEST_ENVIRONMENT) $(PYTHON) $(srcdir)/runtests.py $*
%.forever: %
$(srcdir)/cleanup.py
@while true; do \
$(PYTHON) $(srcdir)/runtests.py $* || break; done
@rm -fr *.pyc
# valgrind all tests
valgrind: $(tests)
@echo "Valgrinding tests ..."
@failed=0; \
for t in $(filter-out $(VALGRIND_TESTS_DISABLE),$(tests)); do \
make $$t.valgrind; \
if test "$$?" -ne 0; then \
echo "Valgrind error for test $$t"; \
failed=`expr $$failed + 1`; \
whicht="$$whicht $$t"; \
fi; \
done; \
if test "$$failed" -ne 0; then \
echo "$$failed tests had leaks under valgrind:"; \
echo "$$whicht"; \
false; \
fi
|