diff options
author | Christian Schoenebeck <qemu_oss@crudebyte.com> | 2020-10-08 20:34:56 +0200 |
---|---|---|
committer | Christian Schoenebeck <qemu_oss@crudebyte.com> | 2020-10-19 14:25:40 +0200 |
commit | e55b178b5e139fc1b951ac8f56e48db716909006 (patch) | |
tree | ba423ac73be1cc0bc43906b1867a24a69adfc959 /tests/qtest/libqos/virtio-9p.h | |
parent | 051f0e5be12b2760d7fb2095b864b26ffe21f6de (diff) | |
download | qemu-e55b178b5e139fc1b951ac8f56e48db716909006.zip qemu-e55b178b5e139fc1b951ac8f56e48db716909006.tar.gz qemu-e55b178b5e139fc1b951ac8f56e48db716909006.tar.bz2 |
tests/9pfs: add virtio_9p_test_path()
This new public function virtio_9p_test_path() allows 9pfs
'local' tests to translate a path from guest scope to host
scope. For instance by passing an empty string it would
return the root path on host of the exported 9pfs tree.
Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Message-Id: <b563d3c73c6391ec927a2622c9f65c09ca56bd83.1602182956.git.qemu_oss@crudebyte.com>
Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Diffstat (limited to 'tests/qtest/libqos/virtio-9p.h')
-rw-r--r-- | tests/qtest/libqos/virtio-9p.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/qtest/libqos/virtio-9p.h b/tests/qtest/libqos/virtio-9p.h index 326a603..19a4d97 100644 --- a/tests/qtest/libqos/virtio-9p.h +++ b/tests/qtest/libqos/virtio-9p.h @@ -49,4 +49,9 @@ struct QVirtio9PDevice { */ void virtio_9p_assign_local_driver(GString *cmd_line, const char *args); +/** + * Returns path on host to the passed guest path. Result must be freed. + */ +char *virtio_9p_test_path(const char *path); + #endif |