diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2018-09-24 14:04:40 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2018-09-24 14:04:40 +0100 |
commit | 539c251b64d2cdd6aeafde1c6283688915c9aad0 (patch) | |
tree | 0af021806c9ec5c50945055691473ed14b5723b6 /tests | |
parent | 2dff75525e7b8a694b8157f1aa0a3a61d5263562 (diff) |
Revert "tests: add qmp/qom-set-without-value test"
Markus spotted some issues with this new test case which
unfortunately I didn't notice had been flagged until after
I'd applied the pull request. Revert the relevant commit.
This reverts commit 2b70ea92766f5a1a735a44e28c92cdfba3c4054f.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qmp-test.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/qmp-test.c b/tests/qmp-test.c index 2b923f02db..b3472281ae 100644 --- a/tests/qmp-test.c +++ b/tests/qmp-test.c @@ -321,19 +321,6 @@ static void test_qmp_preconfig(void) qtest_quit(qs); } -static void test_qom_set_without_value(void) -{ - QTestState *qts; - QDict *resp; - - qts = qtest_init(common_args); - resp = qtest_qmp(qts, "{'execute': 'qom-set', 'arguments':" - " { 'path': '/machine', 'property': 'rtc-time' } }"); - g_assert_nonnull(resp); - qmp_assert_error_class(resp, "GenericError"); - qtest_quit(qts); -} - int main(int argc, char *argv[]) { g_test_init(&argc, &argv, NULL); @@ -341,7 +328,6 @@ int main(int argc, char *argv[]) qtest_add_func("qmp/protocol", test_qmp_protocol); qtest_add_func("qmp/oob", test_qmp_oob); qtest_add_func("qmp/preconfig", test_qmp_preconfig); - qtest_add_func("qmp/qom-set-without-value", test_qom_set_without_value); return g_test_run(); } |