Displaying 7 results from an estimated 7 matches for "d8ac358".
2016 Oct 03
3
[PATCH v2 0/2] New tool: virt-tail.
Nothing new in the virt-tail command itself, but the second
commit includes a simple test.
Rich.
2016 Oct 03
0
[PATCH v2 1/2] New tool: virt-tail.
...;);
+ return -1;
+ }
+
+ guestfs_set_verbose (g2, guestfs_get_verbose (g));
+ guestfs_set_trace (g2, guestfs_get_trace (g));
+ guestfs_set_pgroup (g2, guestfs_get_pgroup (g));
+
+ guestfs_close (g);
+ g = g2;
+
+ return 0;
+}
diff --git a/cat/test-docs.sh b/cat/test-docs.sh
index a0ffc61..d8ac358 100755
--- a/cat/test-docs.sh
+++ b/cat/test-docs.sh
@@ -24,3 +24,4 @@ $srcdir/../podcheck.pl virt-filesystems.pod virt-filesystems
$srcdir/../podcheck.pl virt-log.pod virt-log
$srcdir/../podcheck.pl virt-ls.pod virt-ls \
--ignore=--checksums,--extra-stat,--time,--uid
+$sr...
2016 Oct 01
1
[PATCH] New tool: virt-tail.
This adds a new tool which does a follow operation (ie. tail -f)
on one or more log/text files inside the guest.
I've only done limited testing, but it works for me for tailing
various long-running builds inside guests which I'm doing at the
moment.
There are no tests at present.
Rich.
2016 Oct 03
0
[PATCH v3 1/2] New tool: virt-tail.
...;);
+ return -1;
+ }
+
+ guestfs_set_verbose (g2, guestfs_get_verbose (g));
+ guestfs_set_trace (g2, guestfs_get_trace (g));
+ guestfs_set_pgroup (g2, guestfs_get_pgroup (g));
+
+ guestfs_close (g);
+ g = g2;
+
+ return 0;
+}
diff --git a/cat/test-docs.sh b/cat/test-docs.sh
index a0ffc61..d8ac358 100755
--- a/cat/test-docs.sh
+++ b/cat/test-docs.sh
@@ -24,3 +24,4 @@ $srcdir/../podcheck.pl virt-filesystems.pod virt-filesystems
$srcdir/../podcheck.pl virt-log.pod virt-log
$srcdir/../podcheck.pl virt-ls.pod virt-ls \
--ignore=--checksums,--extra-stat,--time,--uid
+$sr...
2016 Oct 03
1
Re: [PATCH v2 1/2] New tool: virt-tail.
...(g2, guestfs_get_verbose (g));
> + guestfs_set_trace (g2, guestfs_get_trace (g));
> + guestfs_set_pgroup (g2, guestfs_get_pgroup (g));
> +
> + guestfs_close (g);
> + g = g2;
> +
> + return 0;
> +}
> diff --git a/cat/test-docs.sh b/cat/test-docs.sh
> index a0ffc61..d8ac358 100755
> --- a/cat/test-docs.sh
> +++ b/cat/test-docs.sh
> @@ -24,3 +24,4 @@ $srcdir/../podcheck.pl virt-filesystems.pod virt-filesystems
> $srcdir/../podcheck.pl virt-log.pod virt-log
> $srcdir/../podcheck.pl virt-ls.pod virt-ls \
> --ignore=--checksums,...
2016 Oct 03
3
[PATCH v3 0/2] New tool: virt-tail.
Since v2:
- Fix the things that Pino mentioned, except the recursion.
- Implement Windows support.
For Windows support to be sane, I had to inline the add_and_mount code.
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.