diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2012-06-11 12:15:51 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-06-11 12:15:51 -0500 |
| commit | df33219191a8f8ac672f674ec1fd4e1837d760a3 (patch) | |
| tree | 2b2c587eb9a24d3bdcdb74fc2cdab22c3ec97850 /tests/test-string-output-visitor.c | |
| parent | 3525c42fd3b70182b1f98d74439e8aeabb565803 (diff) | |
| parent | fa0298872e13939283bd0568e5326a1aa674c4ca (diff) | |
| download | focaccia-qemu-df33219191a8f8ac672f674ec1fd4e1837d760a3.tar.gz focaccia-qemu-df33219191a8f8ac672f674ec1fd4e1837d760a3.zip | |
Merge remote-tracking branch 'afaerber-or/qom-next-1' into staging
* afaerber-or/qom-next-1: target-i386: Use uint32 visitor for [x]level properties qdev: Remove PropertyInfo range checking qdev: Switch property accessors to fixed-width visitor interfaces qdev: Use int32_t container for devfn property qapi: Add String visitor coverage to serialization unit tests qapi: String visitor, use %f representation for floats qapi: Unit tests for visitor-based serialization qapi: Add Visitor interfaces for uint*_t and int*_t
Diffstat (limited to 'tests/test-string-output-visitor.c')
| -rw-r--r-- | tests/test-string-output-visitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-string-output-visitor.c b/tests/test-string-output-visitor.c index 22909b84ef..608f14a5de 100644 --- a/tests/test-string-output-visitor.c +++ b/tests/test-string-output-visitor.c @@ -84,7 +84,7 @@ static void test_visitor_out_number(TestOutputVisitorData *data, str = string_output_get_string(data->sov); g_assert(str != NULL); - g_assert_cmpstr(str, ==, "3.14"); + g_assert_cmpstr(str, ==, "3.140000"); g_free(str); } |