<feed xmlns='http://www.w3.org/2005/Atom'>
<title>test-virtserial.git/Makefile, branch master</title>
<subtitle>A set of tests to check the functionality of generic virtio serial ports</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/amitshah/public_git/test-virtserial.git/'/>
<entry>
<title>auto-test: Introduce a threaded read/write test</title>
<updated>2010-08-23T08:25:16+00:00</updated>
<author>
<name>Amit Shah</name>
<email>amit.shah@redhat.com</email>
</author>
<published>2010-08-23T08:25:16+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/amitshah/public_git/test-virtserial.git/commit/?id=e1f100f1fbe0285c7efdfc30f38bece766e59efe'/>
<id>e1f100f1fbe0285c7efdfc30f38bece766e59efe</id>
<content type='text'>
Introduce a test that creates a new thread and blocks on a port for
read. The parent thread then writes to the port, and later the host
writes something to the port, unblocking the read.

Signed-off-by: Amit Shah &lt;amit.shah@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Introduce a test that creates a new thread and blocks on a port for
read. The parent thread then writes to the port, and later the host
writes something to the port, unblocking the read.

Signed-off-by: Amit Shah &lt;amit.shah@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: clean target, dependencies on .h files</title>
<updated>2009-11-26T14:43:32+00:00</updated>
<author>
<name>Amit Shah</name>
<email>amit.shah@redhat.com</email>
</author>
<published>2009-11-26T14:43:32+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/amitshah/public_git/test-virtserial.git/commit/?id=3f621762b88f5c7130e4955f1d08bff674a74256'/>
<id>3f621762b88f5c7130e4955f1d08bff674a74256</id>
<content type='text'>
Signed-off-by: Amit Shah &lt;amit.shah@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Amit Shah &lt;amit.shah@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>auto-test: compile programs with -g</title>
<updated>2009-10-29T14:28:46+00:00</updated>
<author>
<name>Amit Shah</name>
<email>amit.shah@redhat.com</email>
</author>
<published>2009-10-29T08:20:35+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/amitshah/public_git/test-virtserial.git/commit/?id=b848299eceb155dff6c5b847e9d81f5ba0453492'/>
<id>b848299eceb155dff6c5b847e9d81f5ba0453492</id>
<content type='text'>
Helpful for debugging

Signed-off-by: Amit Shah &lt;amit.shah@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Helpful for debugging

Signed-off-by: Amit Shah &lt;amit.shah@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Automated test suite for new virtio-console functionality</title>
<updated>2009-10-20T05:41:35+00:00</updated>
<author>
<name>Amit Shah</name>
<email>amit.shah@redhat.com</email>
</author>
<published>2009-10-20T05:41:35+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/amitshah/public_git/test-virtserial.git/commit/?id=5ed4f8465c53191cbb3e1e70690d895f42af2045'/>
<id>5ed4f8465c53191cbb3e1e70690d895f42af2045</id>
<content type='text'>
This commit adds programs that run automated tests in the guest.
One program (auto-virtserial.c) is to be run on the host and
another (auto-virtserial-guest.c) is to be run in the guest.

A README file is added that explains how to run them using the
supplied script (run-test.sh).

Signed-off-by: Amit Shah &lt;amit.shah@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit adds programs that run automated tests in the guest.
One program (auto-virtserial.c) is to be run on the host and
another (auto-virtserial-guest.c) is to be run in the guest.

A README file is added that explains how to run them using the
supplied script (run-test.sh).

Signed-off-by: Amit Shah &lt;amit.shah@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>test-virtserial: A set of tests to check generic virtio serial ports</title>
<updated>2009-10-12T09:49:44+00:00</updated>
<author>
<name>Amit Shah</name>
<email>amit.shah@redhat.com</email>
</author>
<published>2009-10-12T09:49:44+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/amitshah/public_git/test-virtserial.git/commit/?id=26e37aecb8de22dfdc679b3cfdb984c8d3c784e4'/>
<id>26e37aecb8de22dfdc679b3cfdb984c8d3c784e4</id>
<content type='text'>
The old virtio-console is now capable of handling generic serial ports
as well. This code base targets at testing the various paths in the
virtio-console (or virtio-serial) codebase, in the kernel as well
as in qemu (kernel in the guest, qemu on the host).

This test is an interactive session.

An automated test will follow.

Signed-off-by: Amit Shah &lt;amit.shah@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The old virtio-console is now capable of handling generic serial ports
as well. This code base targets at testing the various paths in the
virtio-console (or virtio-serial) codebase, in the kernel as well
as in qemu (kernel in the guest, qemu on the host).

This test is an interactive session.

An automated test will follow.

Signed-off-by: Amit Shah &lt;amit.shah@redhat.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
