]> xenbits.xensource.com Git - xen.git/commitdiff
tools/tests: don't let test-xenstore write nodes exceeding default size
authorJuergen Gross <jgross@suse.com>
Thu, 4 Jul 2024 12:17:48 +0000 (14:17 +0200)
committerJan Beulich <jbeulich@suse.com>
Thu, 4 Jul 2024 12:17:48 +0000 (14:17 +0200)
Today test-xenstore will write nodes with 3000 bytes node data. This
size is exceeding the default quota for the allowed node size. While
working in dom0 with C-xenstored, OCAML-xenstored does not like that.

Use a size of 2000 instead, which is lower than the allowed default
node size of 2048.

Fixes: 3afc5e4a5b75 ("tools/tests: add xenstore testing framework")
Signed-off-by: Juergen Gross <jgross@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
master commit: 642005e310483c490b0725fab4672f2b77fdf2ba
master date: 2024-05-02 18:15:31 +0100

tools/tests/xenstore/test-xenstore.c

index d3574b3fa27025de7115b6c4dda80e8408141fe0..0e2a83ba5ddd29a456f5433fbfbfd106363acee5 100644 (file)
@@ -408,9 +408,9 @@ static int test_ta3_deinit(uintptr_t par)
 #define TEST(s, f, p, l) { s, f ## _init, f, f ## _deinit, (uintptr_t)(p), l }
 struct test tests[] = {
 TEST("read 1", test_read, 1, "Read node with 1 byte data"),
-TEST("read 3000", test_read, 3000, "Read node with 3000 bytes data"),
+TEST("read 2000", test_read, 2000, "Read node with 2000 bytes data"),
 TEST("write 1", test_write, 1, "Write node with 1 byte data"),
-TEST("write 3000", test_write, 3000, "Write node with 3000 bytes data"),
+TEST("write 2000", test_write, 2000, "Write node with 2000 bytes data"),
 TEST("dir", test_dir, 0, "List directory"),
 TEST("rm node", test_rm, 0, "Remove single node"),
 TEST("rm dir", test_rm, WRITE_BUFFERS_N, "Remove node with sub-nodes"),