search for: 517d8a3

Displaying 3 results from an estimated 3 matches for "517d8a3".

Did you mean: 517833
2016 Feb 03
5
[PATCH 0/3] tests: Various fixes for btrfs and aarch64.
These patches fix btrfs on aarch64. You still need btrfs-progs 4.4 which was only released a few days ago. Rich.
2016 Feb 03
0
[PATCH 1/3] tests: Increase the size of the /dev/sda and /dev/sdb test devices.
...ot;) == 0"), []; + "check_hash (ret, \"PART_ENTRY_SIZE\", \"20971265\") == 0"), []; ]; shortdesc = "print block device attributes"; longdesc = "\ diff --git a/tests/c-api/tests-main.c b/tests/c-api/tests-main.c index feec7bc..517d8a3 100644 --- a/tests/c-api/tests-main.c +++ b/tests/c-api/tests-main.c @@ -440,17 +440,17 @@ create_handle (void) exit (EXIT_FAILURE); } - if (guestfs_add_drive_scratch (g, 524288000, -1) == -1) { + if (guestfs_add_drive_scratch (g, INT64_C(10)*1024*1024*1024, -1) == -1) { printf (&q...
2016 Feb 08
1
[PATCH] tests: reduce sizes of scratch disks to 2 GB
...s"; "/dev/sda2"; ""; ""; "NOARG"; ""; "NOARG"; "NOARG"; ""; ""]; ["mount"; "/dev/sda1"; "/"]; diff --git a/tests/c-api/tests-main.c b/tests/c-api/tests-main.c index 517d8a3..85208b1 100644 --- a/tests/c-api/tests-main.c +++ b/tests/c-api/tests-main.c @@ -440,12 +440,12 @@ create_handle (void) exit (EXIT_FAILURE); } - if (guestfs_add_drive_scratch (g, INT64_C(10)*1024*1024*1024, -1) == -1) { + if (guestfs_add_drive_scratch (g, INT64_C(2)*1024*1024*1024, -1)...