search for: 0d227cf

Displaying 3 results from an estimated 3 matches for "0d227cf".

2016 Jan 28
1
[PATCH] inotify_add_watch: pass IN_ALL_EVENTS as mask for test
...s a simplier 0xfff, which is the value of the IN_ALL_EVENTS define. This will still catch all the inotify events, and avoid a EINVAL error with Linux 4.4. --- generator/actions.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/actions.ml b/generator/actions.ml index 0d227cf..24c6eb7 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -7274,7 +7274,7 @@ per libguestfs instance." }; InitScratchFS, Always, TestResult ( [["mkdir"; "/inotify_add_watch"]; ["inotify_init"; "0"]; - [&qu...
2016 Jan 27
2
[PATCH 1/2] generator: add TestRunOrUnsupported test type
Create a new TestRunOrUnsupported test type, which represents a test sequence where a failure with ENOTSUP in the last command only marks the test as skipped. To be used mainly when testing features available only with some versions of helper tools used in the appliance, for example. --- generator/tests_c_api.ml | 26 ++++++++++++++++++++++++-- generator/types.ml | 5 +++++
2016 Jan 27
0
[PATCH 2/2] actions: mark btrfs test case of vfs_minimum_size as TestRunOrUnsupported
...e btrfs test case of the vfs_minimum_size tests as TestRunOrUnsupported, so it will not cause failures if the available btrfs-progs is not enough. --- generator/actions.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/actions.ml b/generator/actions.ml index 14902e7..0d227cf 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12765,7 +12765,7 @@ To read the UUID on a filesystem, call C<guestfs_vfs_uuid>." }; InitPartition, IfAvailable "ntfsprogs", TestRun( [["mkfs"; "ntfs"; "/dev/sda1"; &qu...