[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 02/14] libqtest: Use qemu_strtoul()
From: |
Thomas Huth |
Subject: |
[Qemu-devel] [PATCH 02/14] libqtest: Use qemu_strtoul() |
Date: |
Thu, 8 Feb 2018 21:09:30 +0100 |
From: Eric Blake <address@hidden>
This will keep checkpatch happy when the next patch does code motion.
Fix the include order to match HACKING when adding the needed header.
Signed-off-by: Eric Blake <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>
Signed-off-by: Thomas Huth <address@hidden>
---
tests/libqtest.c | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/tests/libqtest.c b/tests/libqtest.c
index 0ec8af2..5d90cdc 100644
--- a/tests/libqtest.c
+++ b/tests/libqtest.c
@@ -15,12 +15,13 @@
*
*/
#include "qemu/osdep.h"
-#include "libqtest.h"
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/un.h>
+#include "libqtest.h"
+#include "qemu/cutils.h"
#include "qapi/error.h"
#include "qapi/qmp/json-parser.h"
#include "qapi/qmp/json-streamer.h"
@@ -360,12 +361,14 @@ redo:
g_string_free(line, TRUE);
if (strcmp(words[0], "IRQ") == 0) {
- int irq;
+ long irq;
+ int ret;
g_assert(words[1] != NULL);
g_assert(words[2] != NULL);
- irq = strtoul(words[2], NULL, 0);
+ ret = qemu_strtol(words[2], NULL, 0, &irq);
+ g_assert(!ret);
g_assert_cmpint(irq, >=, 0);
g_assert_cmpint(irq, <, MAX_IRQ);
@@ -727,11 +730,13 @@ void qtest_outl(QTestState *s, uint16_t addr, uint32_t
value)
static uint32_t qtest_in(QTestState *s, const char *cmd, uint16_t addr)
{
gchar **args;
- uint32_t value;
+ int ret;
+ unsigned long value;
qtest_sendf(s, "%s 0x%x\n", cmd, addr);
args = qtest_rsp(s, 2);
- value = strtoul(args[1], NULL, 0);
+ ret = qemu_strtoul(args[1], NULL, 0, &value);
+ g_assert(!ret && value <= UINT32_MAX);
g_strfreev(args);
return value;
@@ -782,11 +787,13 @@ void qtest_writeq(QTestState *s, uint64_t addr, uint64_t
value)
static uint64_t qtest_read(QTestState *s, const char *cmd, uint64_t addr)
{
gchar **args;
+ int ret;
uint64_t value;
qtest_sendf(s, "%s 0x%" PRIx64 "\n", cmd, addr);
args = qtest_rsp(s, 2);
- value = strtoull(args[1], NULL, 0);
+ ret = qemu_strtou64(args[1], NULL, 0, &value);
+ g_assert(!ret);
g_strfreev(args);
return value;
--
1.8.3.1
- [Qemu-devel] [PATCH 00/14] qtest patches, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 01/14] tests: Clean up wait for event, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 02/14] libqtest: Use qemu_strtoul(),
Thomas Huth <=
- [Qemu-devel] [PATCH 03/14] libqos: Track QTestState with QPCIBus, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 04/14] libqos: Use explicit QTestState for fw_cfg operations, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 05/14] libqos: Use explicit QTestState for rtas operations, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 07/14] libqos: Use explicit QTestState for ahci operations, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 06/14] libqos: Use explicit QTestState for i2c operations, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 08/14] libqos: Use explicit QTestState for remaining libqos operations, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 09/14] qmp-test: Drop dependence on global_qtest, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 10/14] tests/boot-sector: Drop dependence on global_qtest, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 11/14] wdt_ib700-test: Drop dependence on global_qtest, Thomas Huth, 2018/02/08
- [Qemu-devel] [PATCH 13/14] tests/boot-serial: Add tests for PowerPC Mac machines, Thomas Huth, 2018/02/08