mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
Install python test suite and run it as ptest (From OE-Core rev: a768047cb8fc00ecf13f4db08117c348a9312c47) Signed-off-by: Tudor Florea <tudor.florea@enea.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
Add 'build-test' and 'runtest-TESTS' targets to Makefile, to build and run tests
|
|
cross-compiled.
|
|
|
|
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
|
|
Upstream-Status: Pending
|
|
---
|
|
diff -ruN a/Makefile.pre.in b/Makefile.pre.in
|
|
--- a/Makefile.pre.in 2013-06-27 10:44:11.033840532 +0200
|
|
+++ b/Makefile.pre.in 2013-06-27 10:44:39.572635273 +0200
|
|
@@ -709,14 +709,19 @@
|
|
# generated bytecode. This is sometimes a very shy bug needing a lot of
|
|
# sample data.
|
|
|
|
-TESTOPTS= -l $(EXTRATESTOPTS)
|
|
+TESTOPTS= -l -v $(EXTRATESTOPTS)
|
|
TESTPROG= $(srcdir)/Lib/test/regrtest.py
|
|
-TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -Wd -3 -E -tt $(TESTPYTHONOPTS)
|
|
-test: all platform
|
|
- -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
|
|
+TESTPYTHON= $(RUNSHARED) $(BUILDPYTHON) -Wd -3 -E -tt $(TESTPYTHONOPTS)
|
|
+test: build-test
|
|
+ $(MAKE) runtest-TESTS
|
|
+
|
|
+runtest-TESTS:
|
|
+ -find $(srcdir) -name '*.py[co]' -print | xargs rm -f
|
|
-$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
|
|
$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
|
|
|
|
+build-test: all platform
|
|
+
|
|
testall: all platform
|
|
-find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
|
|
$(TESTPYTHON) $(srcdir)/Lib/compileall.py
|