search for: automake2junit

Displaying 9 results from an estimated 9 matches for "automake2junit".

2015 Nov 06
1
Re: [PATCH supermin] build: use a custom test driver
...PASS:' lines in the output. Yes, that's expected. The difference is just in what gets in the resulting .trs files, which now have a line like: :guestfs-time: 1 which indicates how much time each test took; this way, we can parse it and improve the resulting XML for junit (produced by tests/automake2junit.ml in CI). The plan is to apply the same also to libguestfs when switching to parallel-tests, so we can get proper test results for CI even without $RUN_OUTPUT_FILE. > I don't know whether or not you use emacs, but: > > > +# Local Variables: > > +# mode: shell-script > &...
2015 Nov 06
2
[PATCH supermin] build: use a custom test driver
...+# End: diff --git a/tests/Makefile.am b/tests/Makefile.am index 4ebc748..49a8edf 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -17,6 +17,8 @@ # # Written by Richard W.M. Jones <rjones@redhat.com> +LOG_DRIVER = env $(SHELL) $(top_srcdir)/guestfs-test-driver + EXTRA_DIST = \ automake2junit.ml \ $(TESTS) -- 2.1.0
2017 Feb 19
3
[PATCH [WIP] 0/3] tests: Define common test functions.
There's a lot of common code in the tests, eg: if [ "$(guestfish get-backend)" = "uml" ]; then echo "$0: test skipped because UML backend does not support network" exit 77 fi These commits (work in progress) create a common set of test functions for skipping tests etc. Rich.
2016 Jul 18
2
[PATCH] tests: Implement script to check documented tool options match actual options.
...sprep/test-virt-sysprep-docs.sh create mode 100755 v2v/test-v2v-docs.sh diff --git a/Makefile.am b/Makefile.am index edaa642..4b5babb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -222,6 +222,7 @@ EXTRA_DIST = \ logo/virt-builder.svg \ m4/.gitignore \ ocaml-link.sh \ + podcheck.pl \ tests/automake2junit.ml \ tmp/.gitignore \ update-bugs.sh \ diff --git a/align/Makefile.am b/align/Makefile.am index 833739a..edae4b9 100644 --- a/align/Makefile.am +++ b/align/Makefile.am @@ -19,6 +19,7 @@ include $(top_srcdir)/subdir-rules.mk EXTRA_DIST = \ test-virt-alignment-scan.sh \ + test-virt-alignment...
2017 Sep 20
8
[PATCH v2 0/6] Fix OCaml dependencies.
v1 -> v2: - Fixed everything mentioned in patch review. - Libdir module is removed as a separate commit. Rich.
2017 Sep 18
6
[PATCH 0/5] Fix OCaml dependencies.
This works reliably for me ... Rich.
2017 Feb 20
3
[PATCH 0/3] tests: Define common test functions.
Previously I posted a work-in-progress preview of this patch series: https://www.redhat.com/archives/libguestfs/2017-February/msg00224.html This is the finished version that updates all of the shell-script based tests. It passes 'make check', 'make check-direct' and 'make check-slow'. Rich.
2017 Jun 27
3
[PATCH] libvirt: disallow non-local connections (RHBZ#1347830)
If the connection is not local, paths of disks will refer to the remote host, which were mistakenly handled as local paths (in the best case failing to open a non-existing disk, and in the worst case opening a different disk!). In case the disks are remote resources like ssh or ceph, nothing guarantees that the hostname can be reached from the local machine, or even that it is actually the same on
2017 Jul 07
4
[PATCH v6 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
Hopefully this time ...