qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@redhat.com>
To: qemu-devel@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
	Anthony Liguori <aliguori@us.ibm.com>,
	dkoch@cloudswitch.com, "Michael S. Tsirkin" <mst@redhat.com>,
	Michael Roth <mdroth@linux.vnet.ibm.com>,
	Blue Swirl <blauwirbel@gmail.com>,
	khoa@us.ibm.com, Stefan Hajnoczi <stefanha@redhat.com>,
	Paolo Bonzini <pbonzini@redhat.com>, Asias He <asias@redhat.com>
Subject: [Qemu-devel] [PATCH v3 10/12] test-iov: add iov_get_ptr() test case
Date: Wed, 21 Nov 2012 19:32:59 +0100	[thread overview]
Message-ID: <1353522781-12721-11-git-send-email-stefanha@redhat.com> (raw)
In-Reply-To: <1353522781-12721-1-git-send-email-stefanha@redhat.com>

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 tests/test-iov.c | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/tests/test-iov.c b/tests/test-iov.c
index 7997fb5..477aad8 100644
--- a/tests/test-iov.c
+++ b/tests/test-iov.c
@@ -378,6 +378,43 @@ static void test_discard(void)
     iov_free(iov, iov_cnt);
 }
 
+static void test_get_ptr(void)
+{
+    struct iovec *iov;
+    unsigned int iov_cnt;
+    ssize_t offset;
+    size_t size;
+    void *ret;
+
+    /* Offset beyond end of vector */
+    iov_random(&iov, &iov_cnt);
+    size = iov_size(iov, iov_cnt);
+    ret = iov_get_ptr(iov, iov_cnt, size + 1, 1);
+    g_assert(ret == NULL);
+    iov_free(iov, iov_cnt);
+
+    /* Offset before beginning of vector */
+    iov_random(&iov, &iov_cnt);
+    size = iov_size(iov, iov_cnt);
+    ret = iov_get_ptr(iov, iov_cnt, -(size + 1), 1);
+    g_assert(ret == NULL);
+    iov_free(iov, iov_cnt);
+
+    /* Range spans elements */
+    iov_random(&iov, &iov_cnt);
+    ret = iov_get_ptr(iov, iov_cnt, iov->iov_len - 1, 2);
+    g_assert(ret == NULL);
+    iov_free(iov, iov_cnt);
+
+    /* Range within element */
+    iov_random(&iov, &iov_cnt);
+    offset = g_test_rand_int_range(1, iov->iov_len);
+    size = g_test_rand_int_range(1, iov->iov_len - offset + 1);
+    ret = iov_get_ptr(iov, iov_cnt, offset, size);
+    g_assert(ret == iov->iov_base + offset);
+    iov_free(iov, iov_cnt);
+}
+
 int main(int argc, char **argv)
 {
     g_test_init(&argc, &argv, NULL);
@@ -385,5 +422,6 @@ int main(int argc, char **argv)
     g_test_add_func("/basic/iov/from-to-buf", test_to_from_buf);
     g_test_add_func("/basic/iov/io", test_io);
     g_test_add_func("/basic/iov/discard", test_discard);
+    g_test_add_func("/basic/iov/get-ptr", test_get_ptr);
     return g_test_run();
 }
-- 
1.8.0

  parent reply	other threads:[~2012-11-21 18:33 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-21 18:32 [Qemu-devel] [PATCH v3 00/12] virtio: virtio-blk data plane Stefan Hajnoczi
2012-11-21 18:32 ` [Qemu-devel] [PATCH v3 01/12] raw-posix: add raw_get_aio_fd() for virtio-blk-data-plane Stefan Hajnoczi
2012-11-21 18:32 ` [Qemu-devel] [PATCH v3 02/12] configure: add CONFIG_VIRTIO_BLK_DATA_PLANE Stefan Hajnoczi
2012-11-21 18:32 ` [Qemu-devel] [PATCH v3 03/12] dataplane: add host memory mapping code Stefan Hajnoczi
2012-11-26 14:46   ` Don Koch
2012-11-26 15:36     ` Stefan Hajnoczi
2012-11-21 18:32 ` [Qemu-devel] [PATCH v3 04/12] dataplane: add virtqueue vring code Stefan Hajnoczi
2012-11-21 18:32 ` [Qemu-devel] [PATCH v3 05/12] dataplane: add event loop Stefan Hajnoczi
2012-11-21 18:32 ` [Qemu-devel] [PATCH v3 06/12] dataplane: add Linux AIO request queue Stefan Hajnoczi
2012-11-21 18:32 ` [Qemu-devel] [PATCH v3 07/12] iov: add iov_discard() to remove data Stefan Hajnoczi
2012-11-21 18:32 ` [Qemu-devel] [PATCH v3 08/12] test-iov: add iov_discard() testcase Stefan Hajnoczi
2012-11-21 18:32 ` [Qemu-devel] [PATCH v3 09/12] iov: add iov_get_ptr() to reference vector data Stefan Hajnoczi
2012-11-22  9:34   ` Paolo Bonzini
2012-11-22  9:45     ` Michael S. Tsirkin
2012-11-22  9:52       ` Paolo Bonzini
2012-11-22 10:38         ` Michael S. Tsirkin
2012-11-22 10:54           ` Paolo Bonzini
2012-11-22 11:14             ` Michael S. Tsirkin
2012-11-22 11:58     ` Stefan Hajnoczi
2012-11-22 12:15       ` Paolo Bonzini
2012-11-22 12:35       ` Michael S. Tsirkin
2012-11-22 15:18         ` Stefan Hajnoczi
2012-11-21 18:32 ` Stefan Hajnoczi [this message]
2012-11-21 18:33 ` [Qemu-devel] [PATCH v3 11/12] dataplane: add virtio-blk data plane code Stefan Hajnoczi
2012-11-21 18:33 ` [Qemu-devel] [PATCH v3 12/12] virtio-blk: add x-data-plane=on|off performance feature Stefan Hajnoczi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1353522781-12721-11-git-send-email-stefanha@redhat.com \
    --to=stefanha@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=asias@redhat.com \
    --cc=blauwirbel@gmail.com \
    --cc=dkoch@cloudswitch.com \
    --cc=khoa@us.ibm.com \
    --cc=kwolf@redhat.com \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).