git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04ea137
)
ocaml: Catch EVENT_ENTER case in test.
author
Richard W.M. Jones
<rjones@redhat.com>
Wed, 9 Nov 2011 17:50:37 +0000
(17:50 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Wed, 9 Nov 2011 21:21:48 +0000
(21:21 +0000)
For some reason we are not compiling the tests with -warn-error so
this problem was not noticed before.
This fixes commit
9420eaf44ec4067c3740b91b0be0fede08a0c515
.
ocaml/t/guestfs_400_events.ml
patch
|
blob
|
history
diff --git
a/ocaml/t/guestfs_400_events.ml
b/ocaml/t/guestfs_400_events.ml
index
66dc3c3
..
4585a09
100644
(file)
--- a/
ocaml/t/guestfs_400_events.ml
+++ b/
ocaml/t/guestfs_400_events.ml
@@
-27,7
+27,8
@@
let log g ev eh buf array =
| Guestfs.EVENT_PROGRESS -> "progress"
| Guestfs.EVENT_APPLIANCE -> "appliance"
| Guestfs.EVENT_LIBRARY -> "library"
- | Guestfs.EVENT_TRACE -> "trace" in
+ | Guestfs.EVENT_TRACE -> "trace"
+ | Guestfs.EVENT_ENTER -> "enter" in
let eh : int = Obj.magic eh in